diff --git a/internal/namespaces/rdb/v1/custom_acl_test.go b/internal/namespaces/rdb/v1/custom_acl_test.go index 4906b011f..1ff736c04 100644 --- a/internal/namespaces/rdb/v1/custom_acl_test.go +++ b/internal/namespaces/rdb/v1/custom_acl_test.go @@ -11,7 +11,7 @@ import ( func Test_AddACL(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb acl add 1.2.3.4 instance-id={{ .Instance.ID }} --wait", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -25,7 +25,7 @@ func Test_AddACL(t *testing.T) { t.Run("Simple with description", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb acl add 1.2.3.4 instance-id={{ .Instance.ID }} description=some-unique-description --wait", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -39,7 +39,7 @@ func Test_AddACL(t *testing.T) { t.Run("Multiple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb acl add 1.2.3.4 192.168.1.0/30 10.10.10.10 instance-id={{ .Instance.ID }} --wait", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -53,7 +53,7 @@ func Test_AddACL(t *testing.T) { t.Run("Multiple with description", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb acl add 1.2.3.4 192.168.1.0/30 10.10.10.10 instance-id={{ .Instance.ID }} description=some-unique-description --wait", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -69,7 +69,7 @@ func Test_AddACL(t *testing.T) { func Test_DeleteACL(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb acl delete 0.0.0.0/0 instance-id={{ .Instance.ID }} --wait", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -84,7 +84,7 @@ func Test_DeleteACL(t *testing.T) { t.Run("Multiple when set", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd("scw rdb acl add 1.2.3.4 192.168.1.0/32 10.10.10.10 instance-id={{ .Instance.ID }} --wait"), ), Cmd: "scw rdb acl delete 1.2.3.4/32 192.168.1.0/32 10.10.10.10/32 instance-id={{ .Instance.ID }} --wait", @@ -101,7 +101,7 @@ func Test_DeleteACL(t *testing.T) { t.Run("Multiple when not set", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd("scw rdb acl add 192.168.1.0/32 instance-id={{ .Instance.ID }} --wait"), ), Cmd: "scw rdb acl delete 1.2.3.4/32 192.168.1.0/32 10.10.10.10/32 instance-id={{ .Instance.ID }} --wait", @@ -119,7 +119,7 @@ func Test_DeleteACL(t *testing.T) { func Test_SetACL(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb acl set 1.2.3.4 instance-id={{ .Instance.ID }} descriptions.0=something --wait", Check: core.TestCheckCombine( core.TestCheckGolden(), @@ -136,7 +136,7 @@ func Test_SetACL(t *testing.T) { t.Run("Multiple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd("scw rdb acl add 1.2.3.4 192.168.1.0/32 10.10.10.10 instance-id={{ .Instance.ID }} --wait"), ), Cmd: "scw rdb acl set 1.2.3.4 192.168.1.0/31 11.11.11.11 instance-id={{ .Instance.ID }} descriptions.0=first descriptions.1=second descriptions.2=third --wait", diff --git a/internal/namespaces/rdb/v1/custom_endpoint_test.go b/internal/namespaces/rdb/v1/custom_endpoint_test.go index 3a62f8ad8..62af0ba5a 100644 --- a/internal/namespaces/rdb/v1/custom_endpoint_test.go +++ b/internal/namespaces/rdb/v1/custom_endpoint_test.go @@ -37,7 +37,7 @@ func Test_EndpointCreate(t *testing.T) { Commands: cmds, BeforeFunc: core.BeforeFuncCombine( createPN(), - createInstance("PostgreSQL-15"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), ), Cmd: "scw rdb endpoint create {{ .Instance.ID }} private-network.private-network-id={{ .PN.ID }} private-network.service-ip={{ .IPNet }} --wait", Check: core.TestCheckCombine( @@ -58,7 +58,7 @@ func Test_EndpointCreate(t *testing.T) { Commands: cmds, BeforeFunc: core.BeforeFuncCombine( createPN(), - createInstance("PostgreSQL-15"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), ), Cmd: "scw rdb endpoint create {{ .Instance.ID }} private-network.private-network-id={{ .PN.ID }} private-network.enable-ipam=true --wait", Check: core.TestCheckCombine( @@ -127,7 +127,7 @@ func Test_EndpointDelete(t *testing.T) { t.Run("All", core.Test(&core.TestConfig{ Commands: cmds, BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-15"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), listEndpointsInMeta(), ), Cmd: "scw rdb endpoint delete {{ .PublicEndpoint.ID }} instance-id={{ .Instance.ID }} --wait", diff --git a/internal/namespaces/rdb/v1/custom_instance_test.go b/internal/namespaces/rdb/v1/custom_instance_test.go index 0f5a847b0..029206f39 100644 --- a/internal/namespaces/rdb/v1/custom_instance_test.go +++ b/internal/namespaces/rdb/v1/custom_instance_test.go @@ -25,7 +25,7 @@ const ( func Test_ListInstance(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance list", Check: core.TestCheckGolden(), AfterFunc: deleteInstance(), @@ -35,7 +35,7 @@ func Test_ListInstance(t *testing.T) { func Test_CloneInstance(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance clone {{ .Instance.ID }} node-type=DB-DEV-M name=foobar --wait", Check: core.TestCheckGolden(), AfterFunc: deleteInstance(), @@ -153,7 +153,7 @@ func Test_CreateInstanceInitEndpoints(t *testing.T) { func Test_GetInstance(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance get {{ .Instance.ID }}", Check: core.TestCheckGolden(), AfterFunc: deleteInstance(), @@ -163,7 +163,7 @@ func Test_GetInstance(t *testing.T) { func Test_UpgradeInstance(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance upgrade {{ .Instance.ID }} node-type=DB-DEV-M --wait", Check: core.TestCheckGolden(), AfterFunc: deleteInstance(), @@ -173,7 +173,7 @@ func Test_UpgradeInstance(t *testing.T) { func Test_UpdateInstance(t *testing.T) { t.Run("Update instance name", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance update {{ .Instance.ID }} name=foo --wait", Check: core.TestCheckCombine( func(t *testing.T, ctx *core.CheckFuncCtx) { @@ -188,7 +188,7 @@ func Test_UpdateInstance(t *testing.T) { t.Run("Update instance tags", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance update {{ .Instance.ID }} tags.0=a --wait", Check: core.TestCheckCombine( func(t *testing.T, ctx *core.CheckFuncCtx) { @@ -203,7 +203,7 @@ func Test_UpdateInstance(t *testing.T) { t.Run("Set a timezone", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance update {{ .Instance.ID }} settings.0.name=timezone settings.0.value=UTC --wait", Check: core.TestCheckCombine( func(t *testing.T, ctx *core.CheckFuncCtx) { @@ -219,7 +219,7 @@ func Test_UpdateInstance(t *testing.T) { t.Run("Modify default work_mem from 4 to 8 MB", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance update {{ .Instance.ID }} settings.0.name=work_mem settings.0.value=8 --wait", Check: core.TestCheckCombine( func(t *testing.T, ctx *core.CheckFuncCtx) { @@ -236,7 +236,8 @@ func Test_UpdateInstance(t *testing.T) { t.Run("Modify 3 settings + add a new one", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), + createInstance("{{.latestEngine}}"), core.ExecBeforeCmd("scw rdb instance update {{ .Instance.ID }} settings.0.name=work_mem settings.0.value=8"+ " settings.1.name=max_connections settings.1.value=200"+ " settings.2.name=effective_cache_size settings.2.value=1000"+ @@ -272,7 +273,8 @@ func Test_Connect(t *testing.T) { Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( core.BeforeFuncStoreInMeta("username", user), - createInstance("MySQL-8"), + fetchLatestEngine("MySQL"), + createInstance("{{.latestEngine}}"), ), Cmd: "scw rdb instance connect {{ .Instance.ID }} username={{ .username }}", Check: core.TestCheckCombine( @@ -287,8 +289,7 @@ func Test_Connect(t *testing.T) { Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( core.BeforeFuncStoreInMeta("username", user), - createInstance("PostgreSQL-15"), - ), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb instance connect {{ .Instance.ID }} username={{ .username }}", Check: core.TestCheckCombine( core.TestCheckGolden(), diff --git a/internal/namespaces/rdb/v1/custom_url_test.go b/internal/namespaces/rdb/v1/custom_url_test.go index 23ab79eca..9e5d1fc82 100644 --- a/internal/namespaces/rdb/v1/custom_url_test.go +++ b/internal/namespaces/rdb/v1/custom_url_test.go @@ -15,7 +15,7 @@ func Test_UserGetURL(t *testing.T) { t.Run("Postgres", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), ), Cmd: "scw rdb user get-url {{ $.Instance.ID }}", Check: core.TestCheckCombine( @@ -34,7 +34,7 @@ func Test_UserGetURL(t *testing.T) { t.Run("MySQL", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("MySQL-8"), + fetchLatestEngine("MySQL"), createInstance("{{.latestEngine}}"), ), Cmd: "scw rdb user get-url {{ $.Instance.ID }}", Check: core.TestCheckCombine( @@ -57,7 +57,7 @@ func Test_UserGetURL(t *testing.T) { t.Run("With custom user", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd(fmt.Sprintf("scw rdb user create instance-id={{ $.Instance.ID }} name=%s password=%s is-admin=false", customUserName, customUserPassword)), ), Cmd: "scw rdb user get-url {{ $.Instance.ID }} user=" + customUserName, @@ -77,7 +77,7 @@ func Test_UserGetURL(t *testing.T) { t.Run("With custom database", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd("scw rdb database create instance-id={{ $.Instance.ID }} name="+customDBName), ), Cmd: "scw rdb user get-url {{ $.Instance.ID }} db=" + customDBName, @@ -99,7 +99,7 @@ func Test_DatabaseGetURL(t *testing.T) { t.Run("Postgres", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), ), Cmd: "scw rdb database get-url {{ $.Instance.ID }}", Check: core.TestCheckCombine( diff --git a/internal/namespaces/rdb/v1/custom_user_test.go b/internal/namespaces/rdb/v1/custom_user_test.go index 6c839e356..e213e939c 100644 --- a/internal/namespaces/rdb/v1/custom_user_test.go +++ b/internal/namespaces/rdb/v1/custom_user_test.go @@ -11,7 +11,7 @@ import ( func Test_ListUser(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: "scw rdb user list instance-id={{ .Instance.ID }}", Check: core.TestCheckGolden(), AfterFunc: deleteInstance(), @@ -21,7 +21,7 @@ func Test_ListUser(t *testing.T) { func Test_CreateUser(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: fmt.Sprintf("scw rdb user create instance-id={{ $.Instance.Instance.ID }} name=%s password=%s", name, password), Check: core.TestCheckGolden(), AfterFunc: deleteInstance(), @@ -29,7 +29,7 @@ func Test_CreateUser(t *testing.T) { t.Run("With password generator", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), - BeforeFunc: createInstance("PostgreSQL-12"), + BeforeFunc: core.BeforeFuncCombine(fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}")), Cmd: fmt.Sprintf("scw rdb user create instance-id={{ $.Instance.Instance.ID }} name=%s generate-password=true", name), // do not check the golden as the password generated locally and on CI will necessarily be different Check: core.TestCheckExitCode(0), @@ -41,7 +41,7 @@ func Test_UpdateUser(t *testing.T) { t.Run("Simple", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd(fmt.Sprintf("scw rdb user create instance-id={{ $.Instance.Instance.ID }} name=%s password=%s", name, password)), ), Cmd: fmt.Sprintf("scw rdb user update instance-id={{ $.Instance.Instance.ID }} name=%s password=Newp1ssw0rd! is-admin=true", name), @@ -52,7 +52,7 @@ func Test_UpdateUser(t *testing.T) { t.Run("With password generator", core.Test(&core.TestConfig{ Commands: rdb.GetCommands(), BeforeFunc: core.BeforeFuncCombine( - createInstance("PostgreSQL-12"), + fetchLatestEngine("PostgreSQL"), createInstance("{{.latestEngine}}"), core.ExecBeforeCmd(fmt.Sprintf("scw rdb user create instance-id={{ $.Instance.Instance.ID }} name=%s password=%s", name, password)), ), Cmd: fmt.Sprintf("scw rdb user update instance-id={{ $.Instance.Instance.ID }} name=%s generate-password=true is-admin=true", name), diff --git a/internal/namespaces/rdb/v1/helper_test.go b/internal/namespaces/rdb/v1/helper_test.go index 058277279..94f80f2c4 100644 --- a/internal/namespaces/rdb/v1/helper_test.go +++ b/internal/namespaces/rdb/v1/helper_test.go @@ -6,6 +6,7 @@ import ( "github.com/scaleway/scaleway-cli/v2/core" "github.com/scaleway/scaleway-cli/v2/internal/namespaces/rdb/v1" + rdbSDK "github.com/scaleway/scaleway-sdk-go/api/rdb/v1" "github.com/scaleway/scaleway-sdk-go/api/vpc/v2" "github.com/scaleway/scaleway-sdk-go/scw" ) @@ -17,6 +18,18 @@ const ( engine = "PostgreSQL-15" ) +func fetchLatestEngine(engine string) core.BeforeFunc { + return func(ctx *core.BeforeFuncCtx) error { + api := rdbSDK.NewAPI(ctx.Client) + dbEngine, err := api.FetchLatestEngineVersion(engine) + if err != nil { + return err + } + ctx.Meta["latestEngine"] = dbEngine.Name + return nil + } +} + func createInstance(engine string) core.BeforeFunc { return core.ExecStoreBeforeCmd( "Instance", diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.cassette.yaml index 78395f578..2275985ef 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:22:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7228a510-6a7b-44b4-9170-639836197141 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:20 GMT + - Tue, 07 Jan 2025 13:22:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0037c4f4-57a5-4d40-829e-0e914d10f52f + - 10651170-8227-49b4-8186-3e2ff4227dd1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:24 GMT + - Tue, 07 Jan 2025 13:22:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a14e2886-92b1-4fc8-835e-f91d057456f0 + - c47f44d6-1929-4ecb-9414-a9ef2315e596 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:39 GMT + - Tue, 07 Jan 2025 13:22:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52000a7c-b5f4-49fa-8903-62607d5c3da2 + - f8899a65-ea01-4c00-8771-4a798316a119 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:54 GMT + - Tue, 07 Jan 2025 13:23:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc3de798-af94-4824-8dc6-2a55d7fef26f + - 5cfa1665-3c0f-4a46-a862-c1a9f3900298 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:10 GMT + - Tue, 07 Jan 2025 13:23:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e02f2885-5a03-485f-8e96-e1890ce83d9d + - 45b5e912-a564-40ab-bac2-337688386231 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:25 GMT + - Tue, 07 Jan 2025 13:23:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca94014d-473e-4942-ab51-8784f76e2b9f + - 2fe1096a-7311-48fe-9019-ba0d7dde536d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:40 GMT + - Tue, 07 Jan 2025 13:23:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2e99e71-c1d2-431d-96eb-1ab201528a74 + - 29376bc2-3f2f-42b0-a2c5-26380dcb7bd6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:55 GMT + - Tue, 07 Jan 2025 13:24:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 012a3826-c956-4fb9-be54-40f5ce158087 + - c5bd1f4a-8ebe-4642-bb9e-ac7c0043cc47 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:11 GMT + - Tue, 07 Jan 2025 13:24:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 254e538f-2ca9-4c44-af4c-cfa07d981642 + - cbd3d55b-c0c9-4997-8467-980b34bd03d5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:26 GMT + - Tue, 07 Jan 2025 13:24:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e3c3242-839d-4f4d-8683-82f16828b54c + - 3fdc2901-b9f6-4b40-ab60-3d2b257c7073 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:45 GMT + - Tue, 07 Jan 2025 13:24:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2633,149 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e8291b7-5d93-4633-8bba-dd8d0759d059 + - 32d1fb7c-a7d3-4c4c-90ba-51816d713f64 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 + method: GET + response: + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:25:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cbc7af02-fde7-4476-8a37-f1aa78fdfa20 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 + method: GET + response: + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:25:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93c141f5-2bbb-4a49-8d80-f83b5a82836c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:20.557269Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:20.557269Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:00 GMT + - Tue, 07 Jan 2025 13:25:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,59 +2783,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22bd5b16-46e2-462f-9536-633ddfd1f393 + - 14bc931c-70cd-46cf-8ad1-08e35e97cac7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:20.557269Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:20.557269Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.566499Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:16 GMT + - Tue, 07 Jan 2025 13:25:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -713,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aca85493-a4cc-4188-bc6b-2d4a754f28f4 + - 7aa49596-2240-4c3f-84a5-6b6cef29f25d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:31 GMT + - Tue, 07 Jan 2025 13:26:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -777,37 +2897,37 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4c000e9-f850-4896-a4cc-f93c900b5e46 + - 01875ff7-7cec-4f90-98a0-d43c986568d6 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":1302, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":1302, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":13907, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":1302, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":1302, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":13907, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' headers: Content-Length: - - "263" + - "265" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:31 GMT + - Tue, 07 Jan 2025 13:26:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -815,63 +2935,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b88f5f2d-a862-42b4-a16b-ca8c68024f05 + - 288cb22d-ea27-40ee-98df-85dbe1b42c62 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":13907, "name":null, "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":13907, "name":null, "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:31 GMT + - Tue, 07 Jan 2025 13:26:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,63 +2995,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87dd1138-52df-40af-a3e9-e46414b4348c + - 5825b19a-dc38-4f1d-9be1-794614856388 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -943,41 +3055,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6eab619-f385-4d23-a489-cc4747b86eb2 + - d1ea965f-fe5c-4c73-a758-352ce21d003e status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":1302, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":1302, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":13907, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}, - {"ip":"192.168.1.0/30", "port":1302, "protocol":"tcp", "direction":"inbound", + {"ip":"192.168.1.0/30", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":1302, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":1302, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":13907, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}, - {"ip":"192.168.1.0/30", "port":1302, "protocol":"tcp", "direction":"inbound", + {"ip":"192.168.1.0/30", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' headers: Content-Length: - - "401" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,63 +3097,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5b05dee-7b62-41bc-9e86-9c6962bb3fd8 + - 918f278b-5888-4b1b-aacf-ac51d3cd69d6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":13907, "name":null, "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":13907, "name":null, "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1049,63 +3157,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78397e11-de14-41a0-bbc4-6a105a6da592 + - 23742fef-1cd5-4ce4-970e-cb5504e91d3c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:02 GMT + - Tue, 07 Jan 2025 13:26:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1113,43 +3217,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b34e252f-20a4-4d23-802f-ae190160b25e + - ed93802e-a171-4ac7-b840-954a91821281 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":1302, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":1302, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":13907, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}, - {"ip":"10.10.10.10/32", "port":1302, "protocol":"tcp", "direction":"inbound", + {"ip":"10.10.10.10/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}, {"ip":"192.168.1.0/30", - "port":1302, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' + "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":1302, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":1302, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":13907, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}, - {"ip":"10.10.10.10/32", "port":1302, "protocol":"tcp", "direction":"inbound", + {"ip":"10.10.10.10/32", "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}, {"ip":"192.168.1.0/30", - "port":1302, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' + "port":13907, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' headers: Content-Length: - - "539" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:26:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1157,63 +3261,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f256d6e0-adba-44f1-931f-f50bee8e7cbc + - 0cc35bbb-20ca-432e-9391-8b3983305f93 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":13907, "name":null, "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":13907, "name":null, "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:26:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1221,63 +3321,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1248c142-7a91-4ab1-ad6c-1fd332d0baa4 + - 9e67b9d5-8ecf-426b-8225-bf0b99863d97 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: GET response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:18 GMT + - Tue, 07 Jan 2025 13:26:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1285,63 +3381,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cda6a557-bdb4-4db6-bf4d-ce525ef129eb + - d0038ace-8d9d-42c5-881a-fbcc8dd8ed61 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0c47a36c-b641-4aa1-a17d-cb4722360a77 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/02942bcf-489f-4f54-8379-04a1b7388739 method: DELETE response: - body: '{"id":"0c47a36c-b641-4aa1-a17d-cb4722360a77", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":1302, "name":null, "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02942bcf-489f-4f54-8379-04a1b7388739", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.557269Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.566499Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":1302, "name":null, - "id":"b514c057-e2ea-4e29-b298-138228227840", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":13907, "name":null, + "id":"45d01e10-a7aa-45e2-9906-51c376208e7d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.557269Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.566499Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:19 GMT + - Tue, 07 Jan 2025 13:26:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1349,7 +3441,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54c8f8f6-7dec-42e6-8bf7-f2e7b1f770a5 + - b4d28d94-dd29-4eb1-9879-47a104d396fa status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.golden b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.golden index 29fb507aa..ee4e268bd 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.golden +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple-with-description.golden @@ -1,27 +1,27 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rule 1.2.3.4/32 successfully added. -IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 1302 tcp inbound allow Allow All -1.2.3.4/32 1302 tcp inbound allow some-unique-description +IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION +0.0.0.0/0 13907 tcp inbound allow Allow All +1.2.3.4/32 13907 tcp inbound allow some-unique-description βœ… ACL rule 192.168.1.0/30 successfully added. -IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 1302 tcp inbound allow Allow All -1.2.3.4/32 1302 tcp inbound allow some-unique-description -192.168.1.0/30 1302 tcp inbound allow some-unique-description +IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION +0.0.0.0/0 13907 tcp inbound allow Allow All +1.2.3.4/32 13907 tcp inbound allow some-unique-description +192.168.1.0/30 13907 tcp inbound allow some-unique-description βœ… ACL rule 10.10.10.10/32 successfully added. -IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 1302 tcp inbound allow Allow All -1.2.3.4/32 1302 tcp inbound allow some-unique-description -10.10.10.10/32 1302 tcp inbound allow some-unique-description -192.168.1.0/30 1302 tcp inbound allow some-unique-description +IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION +0.0.0.0/0 13907 tcp inbound allow Allow All +1.2.3.4/32 13907 tcp inbound allow some-unique-description +10.10.10.10/32 13907 tcp inbound allow some-unique-description +192.168.1.0/30 13907 tcp inbound allow some-unique-description 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { "Rules": [ { "ip": "0.0.0.0/0", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -29,7 +29,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -45,7 +45,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -53,7 +53,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -61,7 +61,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/30", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -77,7 +77,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -85,7 +85,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -93,7 +93,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "10.10.10.10/32", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -101,7 +101,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/30", - "port": 1302, + "port": 13907, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.cassette.yaml index ae429e848..e67c09564 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Jan 2025 08:56:50 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ae631ff-52e0-437a-ad0e-ab0cdf2eaeeb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:22 GMT + - Wed, 08 Jan 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e013756d-eba1-489b-814a-9bdffb3ccf17 + - dc0eca0b-6934-4354-b46e-093a7069c85b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:25 GMT + - Wed, 08 Jan 2025 08:56:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45c30521-9d09-4c8e-9f17-d7d17c78e23b + - 65681d58-dbf3-4968-b5a6-8819f65abeca status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:40 GMT + - Wed, 08 Jan 2025 08:57:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa9eb03f-71ad-4f69-b0f7-a4bf7f29efda + - 79c1ab88-d6e6-4754-850f-c28aa6075b0a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:55 GMT + - Wed, 08 Jan 2025 08:57:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 843db0f9-ccea-4ac7-a4c9-ef22f7036968 + - ddae59ed-1eea-49fd-bdcb-78db2c34a456 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:11 GMT + - Wed, 08 Jan 2025 08:57:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30bc00d2-141d-46ce-bb76-0aab5f57e0f0 + - cf9cc151-7627-49bb-9c52-fe1665e30085 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:26 GMT + - Wed, 08 Jan 2025 08:57:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76abc380-687d-4627-81f2-27109bea46db + - 50a8e94a-3644-4741-b3b7-f0fca38298e7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:41 GMT + - Wed, 08 Jan 2025 08:58:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f19e61dd-94a2-45be-9611-e578b411746a + - fd5c3744-6964-464a-8025-fd42e5826d17 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:57 GMT + - Wed, 08 Jan 2025 08:58:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a99b4cf-70d4-4d71-aa7f-7b1e17cc60c8 + - c4e0aef0-fc49-4979-8d80-7e40e03b045a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:12 GMT + - Wed, 08 Jan 2025 08:58:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cb8e3fe-a327-40c0-bb84-eda2e6bbc17c + - 9a954ff5-92f4-42fa-89e3-99a5f3ca2d98 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:27 GMT + - Wed, 08 Jan 2025 08:58:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f161985e-5d3a-4358-8bf7-2da8bc23d113 + - ad84cdba-be83-4c40-ab1a-8a7aac58d878 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:45 GMT + - Wed, 08 Jan 2025 08:59:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99355469-8304-48d8-92b9-906224c2ccbb + - 568e402a-bc89-4374-9152-3f2903f6b367 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:22.201026Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:22.201026Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:00 GMT + - Wed, 08 Jan 2025 08:59:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,59 +2681,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb8d91f5-4828-4b38-8127-c3345d2b3600 + - af886a61-b928-49c1-a9b2-0678be96f731 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 + method: GET + response: + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Jan 2025 08:59:37 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ec15de0-c1b5-44a3-a250-c59958375078 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:22.201026Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:22.201026Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-08T08:56:50.513671Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:15 GMT + - Wed, 08 Jan 2025 08:59:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -713,63 +2783,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92119c53-074f-46b0-bb75-2fdbf4718635 + - 8357a433-c0fc-4d91-b4cd-65c2abf939d0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:31 GMT + - Wed, 08 Jan 2025 09:00:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -777,13 +2843,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35acf224-8032-49ae-8f3d-a7a2dd32a832 + - ce2d323a-3b8d-4c7c-9e76-b4aa355969a2 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":15938, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":15938, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23007, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' form: {} @@ -791,12 +2857,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":15938, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":15938, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23007, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' headers: @@ -807,9 +2873,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:31 GMT + - Wed, 08 Jan 2025 09:00:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,63 +2883,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b58b20-1517-4539-aa24-665adfa08e83 + - 08219641-e4df-4e43-a4ec-e53847baff44 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", + "port":23007, "name":null, "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", + "port":23007, "name":null, "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:31 GMT + - Wed, 08 Jan 2025 09:00:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,63 +2943,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6cf0ebb-2729-4f14-b66d-070d2f6528e5 + - af3d5500-8959-4380-b06b-e6017d8cc5b8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Wed, 08 Jan 2025 09:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -945,29 +3003,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b55719e9-de58-426d-8c35-e7c13697cb85 + - 855e61a2-6b21-4695-9b88-38a15810eb46 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":15938, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":15938, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23007, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"192.168.1.0/30", "port":15938, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"192.168.1.0/30", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/30"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":15938, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":15938, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23007, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"192.168.1.0/30", "port":15938, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"192.168.1.0/30", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/30"}]}' headers: Content-Length: @@ -977,9 +3035,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Wed, 08 Jan 2025 09:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,63 +3045,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34d53b82-af52-4645-a27b-3be6730f8711 + - 5fe2026f-5499-4138-8946-7890f4ca0202 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", + "port":23007, "name":null, "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", + "port":23007, "name":null, "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Wed, 08 Jan 2025 09:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1051,63 +3105,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95acd128-501c-4eab-a29b-1b6b815efede + - 28db43de-892e-4ae4-855d-9c56bac95101 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Wed, 08 Jan 2025 09:00:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1115,33 +3165,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08793c43-6cb0-425b-abe6-c6f84599c3e1 + - e54bd342-a3a9-42ce-bcda-ef8e2c9895c2 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":15938, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":15938, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23007, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":15938, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/30", - "port":15938, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/30"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":15938, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":15938, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23007, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":15938, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/30", - "port":15938, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + "port":23007, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/30"}]}' headers: Content-Length: @@ -1151,9 +3201,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Wed, 08 Jan 2025 09:00:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1161,63 +3211,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64e3dc63-2c62-408f-b175-f8bf9f65f8ae + - b762d1cc-4a1f-448b-8d0e-a8ecb30b4e44 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", + "port":23007, "name":null, "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", + "port":23007, "name":null, "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Wed, 08 Jan 2025 09:00:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1225,63 +3271,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36e9cc32-277e-410f-89f9-452df6996e2f + - bc379931-f9aa-4c0c-8fa2-3e69a06aa69d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: GET response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:21 GMT + - Wed, 08 Jan 2025 09:00:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1289,63 +3331,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8c49e64-3765-42f6-b643-0a0af6f08e01 + - 4956fbb7-b519-4d7f-8225-979ed614f1e4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/96f0c274-4710-4557-a794-a59da25af315 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/909c61c4-3c6c-45f3-9196-5061bf3f9548 method: DELETE response: - body: '{"id":"96f0c274-4710-4557-a794-a59da25af315", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"195.154.68.173", - "port":15938, "name":null, "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"909c61c4-3c6c-45f3-9196-5061bf3f9548", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:22.201026Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-09T08:56:50.513671Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.68.173", "port":15938, "name":null, - "id":"b7d19437-f184-445e-9736-7107dc4d5f50", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.25.24", "port":23007, "name":null, + "id":"2decd3df-67be-40e9-8377-31e980d3c03e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:22.201026Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-08T08:56:50.513671Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:25 GMT + - Wed, 08 Jan 2025 09:00:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1353,7 +3391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f5b3a6a-9568-4446-8397-c910eb84e956 + - 31ad9d01-c2dc-4bf7-bafd-857053781da8 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.golden b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.golden index fc10fc8e4..05f0601df 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-multiple.golden @@ -2,26 +2,26 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rule 1.2.3.4/32 successfully added. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 15938 tcp inbound allow Allow All -1.2.3.4/32 15938 tcp inbound allow Allow 1.2.3.4/32 +0.0.0.0/0 23007 tcp inbound allow Allow All +1.2.3.4/32 23007 tcp inbound allow Allow 1.2.3.4/32 βœ… ACL rule 192.168.1.0/30 successfully added. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 15938 tcp inbound allow Allow All -1.2.3.4/32 15938 tcp inbound allow Allow 1.2.3.4/32 -192.168.1.0/30 15938 tcp inbound allow Allow 192.168.1.0/30 +0.0.0.0/0 23007 tcp inbound allow Allow All +1.2.3.4/32 23007 tcp inbound allow Allow 1.2.3.4/32 +192.168.1.0/30 23007 tcp inbound allow Allow 192.168.1.0/30 βœ… ACL rule 10.10.10.10/32 successfully added. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 15938 tcp inbound allow Allow All -1.2.3.4/32 15938 tcp inbound allow Allow 1.2.3.4/32 -10.10.10.10/32 15938 tcp inbound allow Allow 10.10.10.10/32 -192.168.1.0/30 15938 tcp inbound allow Allow 192.168.1.0/30 +0.0.0.0/0 23007 tcp inbound allow Allow All +1.2.3.4/32 23007 tcp inbound allow Allow 1.2.3.4/32 +10.10.10.10/32 23007 tcp inbound allow Allow 10.10.10.10/32 +192.168.1.0/30 23007 tcp inbound allow Allow 192.168.1.0/30 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { "Rules": [ { "ip": "0.0.0.0/0", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -29,7 +29,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -45,7 +45,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -53,7 +53,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -61,7 +61,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/30", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -77,7 +77,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -85,7 +85,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -93,7 +93,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "10.10.10.10/32", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -101,7 +101,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/30", - "port": 15938, + "port": 23007, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.cassette.yaml index e71c958cf..0c23f611f 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:22:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a3e0de42-32ab-4722-92d8-9e7691f83a99 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:24 GMT + - Tue, 07 Jan 2025 13:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01e94297-a46c-46db-bdbf-3473ed354f90 + - ebaace19-2861-4e11-a734-3cde1f3ce4d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:25 GMT + - Tue, 07 Jan 2025 13:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eca6ec9-8be9-441d-b871-1de4ab28970b + - a95a0663-ccd5-493f-8d1f-2042a6942d7b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:40 GMT + - Tue, 07 Jan 2025 13:22:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ac31204-7ed1-47b7-9913-e2c11aa70495 + - b04e3ef4-85b5-4718-ae83-eff51958d993 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:56 GMT + - Tue, 07 Jan 2025 13:23:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c73e13b-b14d-4753-9bff-f68dab99dada + - 224ec0b0-ef35-4943-9fcd-546588eabc27 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:11 GMT + - Tue, 07 Jan 2025 13:23:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7403027b-8245-42b7-8160-f0c4ff972f3c + - 7b4f1210-6ffc-457c-a8ec-aeb9d90a7e87 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:26 GMT + - Tue, 07 Jan 2025 13:23:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62653dea-6aea-4060-b900-eff9e5e44e06 + - d4ba2619-3766-40bf-b293-37b4e04b7d84 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:42 GMT + - Tue, 07 Jan 2025 13:23:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b4f1c6-c624-4cdf-a842-4a6c620ed8bd + - 8bc21d0d-c9b3-4c65-a84b-6e43053676e8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:57 GMT + - Tue, 07 Jan 2025 13:24:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fbad921-4956-476a-adfa-c0a28de733d7 + - 5a17271c-d502-4900-ae87-5ff1e1a64fe6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:12 GMT + - Tue, 07 Jan 2025 13:24:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a2510ec-48f3-470c-88eb-3fd69aa2c7ec + - 03378671-87eb-4cbc-8fec-77c71d1a7ca6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:27 GMT + - Tue, 07 Jan 2025 13:24:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45e9cd42-a579-4f71-87a1-84496fe5fe2c + - 7ef3bdea-3c4c-4455-902b-b1d74b15e9ee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:43 GMT + - Tue, 07 Jan 2025 13:24:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b8e9480-ef95-4cd1-86fc-702e6a062dbb + - 56e2012a-09cc-46ba-9605-7e77e3036a2f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:58 GMT + - Tue, 07 Jan 2025 13:25:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,59 +2681,149 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 571a8953-bfd6-4916-8044-d725404dac28 + - 925dfe15-95f2-4785-bdd9-0bd3ccfd0d7b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 + method: GET + response: + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:25:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ffe80845-822b-4c68-bc51-656444b9295f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 + method: GET + response: + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:25:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a146f5c-2476-425c-93bf-d5e19b2eb890 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:24.471437Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:24.471437Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:13 GMT + - Tue, 07 Jan 2025 13:25:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,59 +2831,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b40c4dc-dcb5-4210-9a6d-e685e9e61e21 + - daac1158-58c3-4adc-a32e-37af89eb4693 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:24.471437Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:24.471437Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.670341Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:29 GMT + - Tue, 07 Jan 2025 13:26:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -767,63 +2885,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3cabc1a-c651-4c1a-93d8-14bdcf0103b4 + - 55ea0ce7-20a9-4702-865f-912b4f3216bd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:45 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -831,37 +2945,37 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f82ddff1-b2db-4630-9a63-64dd5ad8ad32 + - ab559ce6-9f33-448d-8690-352e69b9b699 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":27184, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":27184, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":3816, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":3816, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":27184, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":27184, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":3816, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":3816, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"some-unique-description"}]}' headers: Content-Length: - - "265" + - "263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -869,63 +2983,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ebe871-2bcf-4a0a-807c-57828375421d + - c4178c3b-7591-48fd-ac65-bd8551c0e2ce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", + "port":3816, "name":null, "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", + "port":3816, "name":null, "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -933,63 +3043,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2240640-da3d-4b8d-b5d2-d2a5bb71e5ea + - d93cc8c4-64a1-4e66-95f6-d827f9eae18e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: GET response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:26:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,63 +3103,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15611e00-cb2f-4d95-aacc-dfbeded7fa65 + - 5e15745d-0033-4d48-b975-8affa91bfe4e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/066e825f-bc46-4f51-abbe-09f1acad0ee9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3d7c2835-70f7-4a3f-80a1-a063079445a0 method: DELETE response: - body: '{"id":"066e825f-bc46-4f51-abbe-09f1acad0ee9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27184, "name":null, "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"3d7c2835-70f7-4a3f-80a1-a063079445a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:24.471437Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.670341Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27184, "name":null, - "id":"77f2e34a-ce6b-456f-9cd9-84f25e3bbbce", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":3816, "name":null, + "id":"9210f79b-1c83-48a5-97a7-852e68bce18a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:24.471437Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.670341Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:26:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1061,7 +3163,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eabd7eae-3d20-444f-8620-7a351e0ccc8f + - 33d67f1f-d41d-4bf6-8f3a-f14bcfdeedbc status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.golden b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.golden index a5afeee93..67eb9d8ce 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.golden +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple-with-description.golden @@ -1,15 +1,15 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rule 1.2.3.4/32 successfully added. -IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 27184 tcp inbound allow Allow All -1.2.3.4/32 27184 tcp inbound allow some-unique-description +IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION +0.0.0.0/0 3816 tcp inbound allow Allow All +1.2.3.4/32 3816 tcp inbound allow some-unique-description 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Rules": [ { "ip": "0.0.0.0/0", - "port": 27184, + "port": 3816, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -17,7 +17,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 27184, + "port": 3816, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.cassette.yaml index a9ddd1562..ab8ba081a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:22:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7e5e3ebb-1c72-4843-a103-a77c0ce2bfc5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:20 GMT + - Tue, 07 Jan 2025 13:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e0d03e5-ad74-4fa5-8b1a-55b376c16fc6 + - 961d557b-93f7-4b8b-b594-27d924ce665f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:21 GMT + - Tue, 07 Jan 2025 13:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d74afe2-3c67-405c-8478-fe5069f51c90 + - 78c71390-886c-43e6-80ec-8caf0be83a73 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:37 GMT + - Tue, 07 Jan 2025 13:22:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a00b140f-3f4c-48c4-a4ce-0b8b67fad2c7 + - b09dd669-fd98-4ec9-a70f-6516cb24f99f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:52 GMT + - Tue, 07 Jan 2025 13:23:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06c9abe6-6be4-4195-9278-689ee6f10e22 + - df91564d-c945-4c04-b1d3-168e43c91789 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:07 GMT + - Tue, 07 Jan 2025 13:23:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eee7b5ec-9091-4b8c-9388-5b771325b663 + - 4c4ca060-a9cd-4909-89ef-d5601525a060 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:23 GMT + - Tue, 07 Jan 2025 13:23:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97568c5d-a80d-4953-ad79-e1bb7bb30e1c + - cae98bf0-08b9-40de-89f9-3fa756ee2351 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:38 GMT + - Tue, 07 Jan 2025 13:23:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7d81996-916f-4390-9fc9-011ba043685e + - 1121bf46-bd9e-457a-9903-db2f0aa9efc1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:53 GMT + - Tue, 07 Jan 2025 13:24:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78e500d7-2a26-4656-8524-31ec47ae8a2c + - ac7c289e-3b16-43cd-a4ad-c3fe8df95701 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:09 GMT + - Tue, 07 Jan 2025 13:24:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15f3b940-9325-40d3-b197-dafae2c5d23e + - ee955239-0f69-461a-9fa6-18627eee1ce3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:25 GMT + - Tue, 07 Jan 2025 13:24:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aebd616-81cd-4d6c-99c3-85272b19683b + - a61d7573-afcd-4cf9-ac5c-aa63eec129b3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:41 GMT + - Tue, 07 Jan 2025 13:24:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 021ccdcf-965c-4978-bf71-590a9a41091b + - 0e291a54-5e12-4f9d-96d7-0a9104d0c0d3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:56 GMT + - Tue, 07 Jan 2025 13:25:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,53 +2681,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 683fb5fe-8069-40b9-add6-177379e7f52c + - 7d281b4d-7d75-4760-bf95-9a7419d2bad3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:11 GMT + - Tue, 07 Jan 2025 13:25:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,59 +2729,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a63fbc0b-5fef-487f-9c64-1a2d4eac9f8f + - 1d88e196-e207-4c11-938b-6357502a4ce7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 + method: GET + response: + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:25:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7a56218-7ba1-4a86-8554-49ea2f0a1893 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:20.270492Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:20.270492Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:27 GMT + - Tue, 07 Jan 2025 13:25:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,63 +2831,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf232ef4-b86e-422e-8f65-e97ce2311922 + - 2ce6e37c-eed6-4eb0-a16d-f68e176f719e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 + method: GET + response: + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:22:35.706219Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:26:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c9d2a7b-31fe-44f2-99fa-d37b8bac8af4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:45 GMT + - Tue, 07 Jan 2025 13:26:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -825,13 +2945,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe8ce894-dcc8-4bc6-958e-c55e3d795351 + - e25e750d-3d09-413e-842d-10fc4e986323 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":27483, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":27483, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10914, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10914, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' form: {} @@ -839,12 +2959,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":27483, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":27483, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10914, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10914, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' headers: @@ -855,9 +2975,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:46 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -865,63 +2985,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e05bedaa-4ab1-491f-95a1-fd63334a8be0 + - 99cf570b-0915-482c-bdb4-024f2df7d42c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":10914, "name":null, "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":10914, "name":null, "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:46 GMT + - Tue, 07 Jan 2025 13:26:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -929,63 +3045,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 565f234e-e202-4cd8-88db-816f63040eb8 + - 7b1052d2-ca9f-4f72-a5ae-28bf2539735a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: GET response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:01 GMT + - Tue, 07 Jan 2025 13:26:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -993,63 +3105,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b11025f9-ea4f-4304-9db8-07504ba859f4 + - f4e7f05f-2e23-4340-ac49-35be4d3cb47f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ddff31e6-0506-4f3a-aed3-4c4948518f7a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5c93dae9-846b-484b-92fa-232fa1ca2be0 method: DELETE response: - body: '{"id":"ddff31e6-0506-4f3a-aed3-4c4948518f7a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":27483, "name":null, "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"5c93dae9-846b-484b-92fa-232fa1ca2be0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:20.270492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:22:35.706219Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":27483, "name":null, - "id":"888e54d0-6168-42ed-926a-283594f9ee0c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10914, "name":null, + "id":"bc43ee57-657e-45eb-9437-e8a9281445a8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:20.270492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:22:35.706219Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:01 GMT + - Tue, 07 Jan 2025 13:26:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1057,7 +3165,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1284227a-8a02-436d-8fd6-f658cb3cae0b + - 53929a28-c0e7-465f-a82f-91cef0846eb7 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.golden b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.golden index eaee342b0..73c0547d5 100644 --- a/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-add-acl-simple.golden @@ -2,14 +2,14 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rule 1.2.3.4/32 successfully added. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 27483 tcp inbound allow Allow All -1.2.3.4/32 27483 tcp inbound allow Allow 1.2.3.4/32 +0.0.0.0/0 10914 tcp inbound allow Allow All +1.2.3.4/32 10914 tcp inbound allow Allow 1.2.3.4/32 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Rules": [ { "ip": "0.0.0.0/0", - "port": 27483, + "port": 10914, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -17,7 +17,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "1.2.3.4/32", - "port": 27483, + "port": 10914, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.cassette.yaml index 4eccfe2dc..733d23497 100644 --- a/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:19:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f1e1d4c-dabd-4616-8159-4c2e8ed6c0f0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:40 GMT + - Tue, 07 Jan 2025 14:19:41 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2385a221-d161-4b01-9702-b1d0c0d983ef + - 794cac4c-5cd1-483d-a54b-f2daeb3f4cab status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:40 GMT + - Tue, 07 Jan 2025 14:19:41 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcc07cc7-5c31-4753-bcd8-49ce487dc9c2 + - 1134fca6-4d0b-4e98-8dd5-0975e11d2a95 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:59 GMT + - Tue, 07 Jan 2025 14:19:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e5fd8d2-3413-4f0a-973b-44bc92999f39 + - 389a52e5-2f8d-418c-9ce4-343f36fdb501 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:09:15 GMT + - Tue, 07 Jan 2025 14:20:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2da1a15f-22fa-4d5d-9c4f-3441c6ae93a0 + - 3e2973d2-3942-4082-89be-dd78de408c31 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:09:30 GMT + - Tue, 07 Jan 2025 14:20:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1593b565-960a-4370-8a13-4a4dda5796da + - e4d10c44-8f0e-40f3-bfbf-800078c787d6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:09:45 GMT + - Tue, 07 Jan 2025 14:20:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6b16a7f-02a2-4fed-9bd8-517f4fcb5bdb + - 37a959fd-bd2c-4985-8373-1a8244221d80 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:10:00 GMT + - Tue, 07 Jan 2025 14:20:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 609b3718-7bcc-442e-b059-6db6ccda8432 + - 2628f016-e1ed-43de-b4f8-1b634770ef8f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:10:15 GMT + - Tue, 07 Jan 2025 14:21:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e433d17-180b-4630-ab4c-b9a8ccfda36a + - 8a21f8f6-cd9d-495d-bca4-5b7ff4fc1e84 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:10:31 GMT + - Tue, 07 Jan 2025 14:21:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad94a60a-4578-4f4b-87b8-7e424ba9ca14 + - 84a94b6b-3030-4e13-81ae-04d660f0bd35 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:10:46 GMT + - Tue, 07 Jan 2025 14:21:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5537502b-d071-4e21-a6f4-9713db07b06d + - 94ea03f5-8395-453f-ae32-04179bd5304d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:11:01 GMT + - Tue, 07 Jan 2025 14:21:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 443c20d4-a84f-4d51-9e33-6e96c81e4f45 + - 89523fbe-98b5-4a6a-940d-d617a54d0878 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:11:16 GMT + - Tue, 07 Jan 2025 14:22:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,53 +2681,155 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 731a7a55-9be2-4a7f-8bad-bd0727ae0925 + - ef96349a-2d27-43db-ab3e-30c5e0c2abea status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:22:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32438f29-4d66-4f18-9a7d-962f762538f7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b + method: GET + response: + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:22:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8f0847b-2baf-4079-8bd3-eab266907999 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b + method: GET + response: + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:19:41.360749Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:11:32 GMT + - Tue, 07 Jan 2025 14:22:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87e4a7e0-eaaa-49cd-ba82-4611abf69e98 + - c879243c-e926-41b1-8466-4cb225c77ee4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":19063, "name":null, "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":19063, "name":null, - "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:19:41.360749Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: GET response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":19063, "name":null, "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":19063, "name":null, - "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:19:41.360749Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:11:47 GMT + - Tue, 07 Jan 2025 14:23:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -765,61 +2897,55 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 296616a5-e414-49a1-a041-207ef80b72ed + - 8f79b036-b33b-4530-a1b3-9b47c37b1fc1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82/clone + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b/clone method: POST response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:11:49 GMT + - Tue, 07 Jan 2025 14:23:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -827,59 +2953,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95d5b28a-00f3-4362-a806-703b19e2a52e + - 00aa678f-0020-4fa6-8894-d618009761dc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:11:49 GMT + - Tue, 07 Jan 2025 14:23:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,59 +3007,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd026039-9922-4298-abd0-c9df739dc1df + - d75d6316-9983-46c8-a70b-8947dd882cab status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:12:04 GMT + - Tue, 07 Jan 2025 14:23:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -947,59 +3061,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e940f0bd-1a8f-4979-af79-d25a79e09d3b + - 16038e7a-ac27-4b51-83b2-fdad9a33ec2e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:12:19 GMT + - Tue, 07 Jan 2025 14:23:44 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1007,59 +3115,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 610c4340-fe43-4ceb-bd8e-44996818d6e2 + - 221cab74-dd1c-43cb-96d2-d54df4ab29c3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:12:35 GMT + - Tue, 07 Jan 2025 14:23:59 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1067,59 +3169,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a192514-8ecb-4919-9f16-12ceb52449f6 + - c2f3e22a-d697-40b0-a21a-6eed5e48a5db status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:12:51 GMT + - Tue, 07 Jan 2025 14:24:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1127,59 +3223,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 424bda0a-bbab-48f5-9da7-0e0bdd72ffb6 + - 4dd5d783-9554-4361-bc1e-abdcf509d9f6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:13:06 GMT + - Tue, 07 Jan 2025 14:24:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1187,59 +3277,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e22fd7d-23c7-4fd3-8c62-02e638d6fd4f + - 53d6b6e0-ef2c-4e5a-bc55-81f53c6db45a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:13:21 GMT + - Tue, 07 Jan 2025 14:24:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1247,59 +3331,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c3b0c9b-0209-44e1-baa2-4d997bcab593 + - 6f08eaa0-7da8-4cac-a8c5-f658ef4b0181 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:13:36 GMT + - Tue, 07 Jan 2025 14:25:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1307,59 +3385,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f841675-eb45-4c29-be8a-d99b7fb14f36 + - 98e8b0a9-b367-4aaa-a286-dee08c6a8c89 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:13:52 GMT + - Tue, 07 Jan 2025 14:25:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1367,59 +3439,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed800953-efa5-467c-86de-4205659129f7 + - e43ba012-5d35-4653-9e68-b924a9372298 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:14:07 GMT + - Tue, 07 Jan 2025 14:25:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1427,59 +3493,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e41e88d3-3dcc-4552-a423-c7f359170b56 + - 48c29a99-e5e2-4624-afd7-74e097126fc0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:14:22 GMT + - Tue, 07 Jan 2025 14:25:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1487,59 +3547,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5938b82-b150-43ff-9e3b-65c1dd1df1af + - d8bbd53a-d888-4bc2-95e1-d8fcba7e9676 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:14:37 GMT + - Tue, 07 Jan 2025 14:26:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1547,59 +3601,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fc73d1c-a67b-4198-9eeb-b37761b2e692 + - 063fb2ab-2dc8-4a3f-9727-4364214bb6b6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:14:52 GMT + - Tue, 07 Jan 2025 14:26:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1607,59 +3655,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3ace6cd-08ca-42ca-ac4c-c98192b3093f + - e1f4db1f-18b1-4ace-8d41-921e37d42e90 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:11:48.104163Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' headers: Content-Length: - - "1357" + - "1057" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:15:07 GMT + - Tue, 07 Jan 2025 14:26:31 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,63 +3709,167 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e35f662-bb9c-444e-8e51-20e1376a6401 + - bdf60307-5731-402e-a621-48f9e0a513f4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":28479, "name":null, "id":"08f281c9-099c-40c0-9db5-683eb5e2d25d", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":28479, "name":null, - "id":"08f281c9-099c-40c0-9db5-683eb5e2d25d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee + method: GET + response: + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' + headers: + Content-Length: + - "1057" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:26:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e799af16-1bf6-489f-9534-e1da0149e70a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee + method: GET + response: + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:23:13.798791Z", "region":"fr-par"}' + headers: + Content-Length: + - "1057" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:27:01 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c71941a9-cc43-4a9f-9a32-36967e9750f5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23659, "name":null, + "id":"cabf3e8b-60d6-4e0a-ad86-9649f58056fb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23659, "name":null, + "id":"cabf3e8b-60d6-4e0a-ad86-9649f58056fb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:11:48.104163Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:23:13.798791Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f65eb701-5128-4e26-9315-1038f2a657dd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1cbfbaed-b378-4f15-aef0-fa52f335d6ee method: GET response: - body: '{"id":"f65eb701-5128-4e26-9315-1038f2a657dd", "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":28479, "name":null, "id":"08f281c9-099c-40c0-9db5-683eb5e2d25d", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name":"foobar", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23659, "name":null, + "id":"cabf3e8b-60d6-4e0a-ad86-9649f58056fb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:11:48.104163Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:23:13.798791Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":28479, "name":null, - "id":"08f281c9-099c-40c0-9db5-683eb5e2d25d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23659, "name":null, + "id":"cabf3e8b-60d6-4e0a-ad86-9649f58056fb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:11:48.104163Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:23:13.798791Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:15:23 GMT + - Tue, 07 Jan 2025 14:27:16 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1731,63 +3877,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a37688eb-5134-4a30-ba23-4eb480d6e5ea + - efc12c4c-69e1-4598-aa64-b287bc55eb7b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":19063, "name":null, "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":19063, "name":null, - "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:19:41.360749Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f918d880-279b-472c-9215-4d323af24d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c461bb73-0dae-454b-a6d7-59485a30219b method: DELETE response: - body: '{"id":"f918d880-279b-472c-9215-4d323af24d82", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":19063, "name":null, "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c461bb73-0dae-454b-a6d7-59485a30219b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:08:40.005511Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:19:41.360749Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":19063, "name":null, - "id":"2c33cd45-77b7-4998-982b-ce9aa0a2c834", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":12802, "name":null, + "id":"cb72e17f-f2c4-47ab-b13b-5907850d0a05", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:08:40.005511Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:19:41.360749Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:15:23 GMT + - Tue, 07 Jan 2025 14:27:16 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,7 +3937,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8843418e-fc95-4679-bba0-95e9da975509 + - ca00d96d-de61-4242-831b-c24a7add5528 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.golden b/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.golden index 93ba95cfc..da4e2e01d 100644 --- a/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-clone-instance-simple.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID f65eb701-5128-4e26-9315-1038f2a657dd -Name foobar -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-m -Endpoints.0.ID 08f281c9-099c-40c0-9db5-683eb5e2d25d -Endpoints.0.IP 51.159.204.209 -Endpoints.0.Port 28479 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID 1cbfbaed-b378-4f15-aef0-fa52f335d6ee +Name foobar +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-m +Endpoints.0.ID cabf3e8b-60d6-4e0a-ad86-9649f58056fb +Endpoints.0.IP 51.159.114.202 +Endpoints.0.Port 23659 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID 08f281c9-099c-40c0-9db5-683eb5e2d25d -IP 51.159.204.209 -Port 28479 +ID cabf3e8b-60d6-4e0a-ad86-9649f58056fb +IP 51.159.114.202 +Port 23659 Volume: Type lssd @@ -61,36 +50,17 @@ work_mem 4 "class": "lssd" }, "region": "fr-par", - "id": "f65eb701-5128-4e26-9315-1038f2a657dd", + "id": "1cbfbaed-b378-4f15-aef0-fa52f335d6ee", "name": "foobar", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "08f281c9-099c-40c0-9db5-683eb5e2d25d", - "ip": "51.159.204.209", - "port": 28479, + "id": "cabf3e8b-60d6-4e0a-ad86-9649f58056fb", + "ip": "51.159.114.202", + "port": 23659, "name": null, "load_balancer": {} }, @@ -133,9 +103,9 @@ work_mem 4 "init_settings": [], "endpoints": [ { - "id": "08f281c9-099c-40c0-9db5-683eb5e2d25d", - "ip": "51.159.204.209", - "port": 28479, + "id": "cabf3e8b-60d6-4e0a-ad86-9649f58056fb", + "ip": "51.159.114.202", + "port": 23659, "name": null, "load_balancer": {} } @@ -146,5 +116,7 @@ work_mem 4 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-connect-mysql.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-connect-mysql.cassette.yaml index a0837b245..264e1af8b 100644 --- a/internal/namespaces/rdb/v1/testdata/test-connect-mysql.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-connect-mysql.cassette.yaml @@ -2,42 +2,2198 @@ version: 1 interactions: - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:51:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa6f5a93-be15-44d2-ab11-64eeabcf4abb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' + headers: + Content-Length: + - "777" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:51:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8155fce4-1dde-4b5e-89bb-6c0dc513d67b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 + method: GET + response: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:51 GMT + - Tue, 07 Jan 2025 14:51:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -45,45 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6b0df7a-07d4-494b-a6c2-2e38e7047b0e + - 55e0f985-b664-48c9-bfd2-0680718e06de status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:52 GMT + - Tue, 07 Jan 2025 14:52:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -91,45 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 669b7e3e-546d-4fd5-ab6d-6409e5e53546 + - ae4f7878-091f-4a4f-b369-5951c043debd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:35:07 GMT + - Tue, 07 Jan 2025 14:52:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -137,45 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ace30bd6-19c6-42fe-9848-dc03136811ed + - bbe118a1-5a10-4f48-9d0e-959af53cd09f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:35:23 GMT + - Tue, 07 Jan 2025 14:52:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -183,45 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3db596cd-9631-4ce2-84a4-73a7527b3f30 + - ee0c746a-1cb6-40cd-a4d7-eae6ca9ea4f4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:35:38 GMT + - Tue, 07 Jan 2025 14:52:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -229,45 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a23c726-729d-428b-a395-b81d145625bf + - edbb7162-6833-4ee1-9970-35a23b67c4e2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:35:53 GMT + - Tue, 07 Jan 2025 14:53:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -275,45 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92d9d983-b08b-41f6-96af-ccc9da315406 + - f4c75497-667e-4808-aab8-0e74124444df status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:36:08 GMT + - Tue, 07 Jan 2025 14:53:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -321,45 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae8d6b73-3014-4e5e-92f4-ed444a45e372 + - 5d906954-9310-41a2-917c-8d3cf3e90b09 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:36:23 GMT + - Tue, 07 Jan 2025 14:53:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -367,45 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dfbb34d-d7ec-46f3-99f0-f0d885663284 + - 146f2e8d-a5d5-44fa-851d-94cd70428727 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:36:38 GMT + - Tue, 07 Jan 2025 14:53:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -413,45 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fdaac78-220e-4d7b-ab0c-5818f3f64426 + - 89b99b5f-e19d-4b2a-b38e-4d1c912be5da status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:36:54 GMT + - Tue, 07 Jan 2025 14:54:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -459,45 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108e3185-6b1e-4525-9472-d713167790e0 + - b51db72d-2f85-4273-a099-e52dd2e4f2d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "745" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:09 GMT + - Tue, 07 Jan 2025 14:54:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,45 +2681,143 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a40510c4-959a-422e-b6f2-b8e7fd7c9db1 + - 788efd8c-05f9-442e-ab62-f91a95254e53 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], - "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' + headers: + Content-Length: + - "777" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:54:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08c62138-4568-42ab-90a7-c3c550f03c69 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:51:47.264387Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 + method: GET + response: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:51:47.264387Z", "region":"fr-par"}' + headers: + Content-Length: + - "818" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:54:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ed7d4c8-228b-4722-ac57-09f3e3acbc65 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:51:47.264387Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 + method: GET + response: + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:51:47.264387Z", "region":"fr-par"}' headers: Content-Length: - - "745" + - "818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:24 GMT + - Tue, 07 Jan 2025 14:55:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -551,51 +2825,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c737c75-97a8-475e-93ed-8cb3c97ce38d + - 48814d3f-183a-4e12-b10d-5bfaf6ae3737 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":17057, "name":null, - "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}, "tags":[], + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":23260, "name":null, + "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":17057, "name":null, "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":23260, "name":null, "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":17057, "name":null, - "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}, "tags":[], + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":23260, "name":null, + "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":17057, "name":null, "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":23260, "name":null, "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "1005" + - "1033" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:39 GMT + - Tue, 07 Jan 2025 14:55:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,51 +2879,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af3afba1-6b82-4bd1-9e84-c4205602bdc3 + - 6f17c702-7c17-4285-aa57-6930c9d25644 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":17057, "name":null, - "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}, "tags":[], + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":23260, "name":null, + "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":17057, "name":null, "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":23260, "name":null, "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: GET response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":17057, "name":null, - "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}, "tags":[], + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":23260, "name":null, + "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":17057, "name":null, "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":23260, "name":null, "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "1005" + - "1033" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:40 GMT + - Tue, 07 Jan 2025 14:55:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -655,51 +2933,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6619ee11-0130-483a-9c22-49e01c0b9fd7 + - 16617a40-15d2-4577-9ea5-dfeab0e0bd7b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":17057, "name":null, - "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}, "tags":[], + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":23260, "name":null, + "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":17057, "name":null, "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":23260, "name":null, "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e5a2379-3f31-494c-b8c6-16952073ac33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c821874b-e26e-454e-abe9-f16d39571fe4 method: DELETE response: - body: '{"id":"0e5a2379-3f31-494c-b8c6-16952073ac33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":17057, "name":null, - "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}, "tags":[], + body: '{"id":"c821874b-e26e-454e-abe9-f16d39571fe4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":23260, "name":null, + "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:34:51.292889Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:51:47.264387Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":17057, "name":null, "id":"842f6a38-2a13-43ca-86ff-e3fa6c6e7957", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":23260, "name":null, "id":"d5d201d8-c4cf-4372-ab59-ec7352993b51", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:34:51.292889Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.264387Z", + "region":"fr-par"}' headers: Content-Length: - - "1008" + - "1036" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:40 GMT + - Tue, 07 Jan 2025 14:55:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,7 +2987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cefd4f9-6e08-4be1-832c-fb22ecc8d5f2 + - 64683371-f301-4ab1-9cfc-03839bcce015 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-connect-psql#01.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-connect-psql#01.cassette.yaml index 13e696ece..bee1eb67e 100644 --- a/internal/namespaces/rdb/v1/testdata/test-connect-psql#01.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-connect-psql#01.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"a459a48e-d55c-4f57-a6c4-08af42225a60", "name":"pn-affectionate-napier", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:49:08.599848Z", - "updated_at":"2024-11-20T09:49:08.599848Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"4dfb169d-cbf6-4b79-8b71-b57980d9896f", "created_at":"2024-11-20T09:49:08.599848Z", - "updated_at":"2024-11-20T09:49:08.599848Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"87f37992-b082-48cd-817a-c9ba4bdcabf4", "created_at":"2024-11-20T09:49:08.599848Z", - "updated_at":"2024-11-20T09:49:08.599848Z", "subnet":"fd49:821a:a311:a303::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "name":"pn-angry-chatterjee", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:51:46.686363Z", + "updated_at":"2025-01-07T14:51:46.686363Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"5060205f-658a-4968-a5bf-23232f843ee8", "created_at":"2025-01-07T14:51:46.686363Z", + "updated_at":"2025-01-07T14:51:46.686363Z", "subnet":"172.16.28.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"692cc189-8efb-4399-b0cf-45d378636f3d", "created_at":"2025-01-07T14:51:46.686363Z", + "updated_at":"2025-01-07T14:51:46.686363Z", "subnet":"fdcd:e4f1:8712:5b0c::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"a459a48e-d55c-4f57-a6c4-08af42225a60", "name":"pn-affectionate-napier", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:49:08.599848Z", - "updated_at":"2024-11-20T09:49:08.599848Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"4dfb169d-cbf6-4b79-8b71-b57980d9896f", "created_at":"2024-11-20T09:49:08.599848Z", - "updated_at":"2024-11-20T09:49:08.599848Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"87f37992-b082-48cd-817a-c9ba4bdcabf4", "created_at":"2024-11-20T09:49:08.599848Z", - "updated_at":"2024-11-20T09:49:08.599848Z", "subnet":"fd49:821a:a311:a303::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "name":"pn-angry-chatterjee", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:51:46.686363Z", + "updated_at":"2025-01-07T14:51:46.686363Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"5060205f-658a-4968-a5bf-23232f843ee8", "created_at":"2025-01-07T14:51:46.686363Z", + "updated_at":"2025-01-07T14:51:46.686363Z", "subnet":"172.16.28.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"692cc189-8efb-4399-b0cf-45d378636f3d", "created_at":"2025-01-07T14:51:46.686363Z", + "updated_at":"2025-01-07T14:51:46.686363Z", "subnet":"fdcd:e4f1:8712:5b0c::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1049" + - "1046" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:49:09 GMT + - Tue, 07 Jan 2025 14:51:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 025a8370-6a4f-489b-a325-963f74ffa022 + - eed2b31b-7f06-4b51-99f8-7085cf16b639 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:49:10 GMT + - Tue, 07 Jan 2025 14:51:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e405837-70dd-459e-a2ca-5000cda18ad9 + - 928904b7-a623-4a9a-b7a5-a55dacf80ee4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:49:10 GMT + - Tue, 07 Jan 2025 14:51:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e6a7146-8fac-4e0f-b63a-79c276900679 + - a804ce1b-a3aa-4cee-80b3-43137fa29ae2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:49:25 GMT + - Tue, 07 Jan 2025 14:52:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c096e0a9-6b74-43ec-b6d4-ec2987250a2b + - dcbe5ead-5bbc-4c4e-8402-2a04df483954 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:49:40 GMT + - Tue, 07 Jan 2025 14:52:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e76f379-3856-4c70-808e-6fe64a907794 + - 886b09e1-daea-4946-aa65-4cd8d8e461ce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:49:55 GMT + - Tue, 07 Jan 2025 14:52:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6ae49b4-70b5-41d4-a92d-ce048caaa132 + - af3160d9-07dd-4f63-9b39-4d117a2fdb8a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:50:10 GMT + - Tue, 07 Jan 2025 14:52:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a25e73a-1aac-4858-8c9d-5bd13775624c + - 91944434-29a6-467f-8703-766419ee150c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:50:25 GMT + - Tue, 07 Jan 2025 14:53:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82fda7ae-00da-4ff3-9bbb-9e4e0bc4c178 + - bc273991-a269-47a9-805f-09fd9e0a20d1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:50:41 GMT + - Tue, 07 Jan 2025 14:53:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2e56eab-543a-42a8-a26c-4644074de6ce + - ae5a6a44-1b21-4073-acda-2f31bcf8edef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:50:56 GMT + - Tue, 07 Jan 2025 14:53:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d54d276e-a455-4939-aaa9-dd78a6f42429 + - 057def3f-45d9-41fa-b4af-b259c5760067 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:51:11 GMT + - Tue, 07 Jan 2025 14:53:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1b14679-234c-4a6f-8996-f4e448d9ec4d + - b3e48038-2c2d-43ce-914c-99031d5a4723 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:51:26 GMT + - Tue, 07 Jan 2025 14:54:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,47 +647,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5382d1c5-9012-459d-8c79-85fb8daef215 + - 1af49948-92b7-4e63-b61a-b78d9366ea06 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:49:09.575392Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: @@ -697,9 +697,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:51:41 GMT + - Tue, 07 Jan 2025 14:54:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,63 +707,123 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0245bd4-f1ed-48ee-a49e-fa9a9f04d5fb + - 34535367-4810-428e-a3a8-79091842603e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.27.230", "port":21032, "name":null, - "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", "load_balancer":{}}, "tags":[], + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 + method: GET + response: + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.692290Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1308" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:54:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4647a1a-40ec-4917-b947-5d2338e6da26 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5012, "name":null, + "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.27.230", "port":21032, "name":null, "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", + {"ip":"51.159.74.117", "port":5012, "name":null, "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:49:09.575392Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.27.230", "port":21032, "name":null, - "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", "load_balancer":{}}, "tags":[], + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5012, "name":null, + "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.27.230", "port":21032, "name":null, "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", + {"ip":"51.159.74.117", "port":5012, "name":null, "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:49:09.575392Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: - - "1527" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:51:56 GMT + - Tue, 07 Jan 2025 14:54:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -771,63 +831,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77504a57-c7c5-4df0-984a-546e0ce9541b + - b2b8b912-ebd5-4256-a1ab-e13b9c2ac231 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.27.230", "port":21032, "name":null, - "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", "load_balancer":{}}, "tags":[], + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5012, "name":null, + "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.27.230", "port":21032, "name":null, "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", + {"ip":"51.159.74.117", "port":5012, "name":null, "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:49:09.575392Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: GET response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.27.230", "port":21032, "name":null, - "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", "load_balancer":{}}, "tags":[], + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5012, "name":null, + "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.27.230", "port":21032, "name":null, "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", + {"ip":"51.159.74.117", "port":5012, "name":null, "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:49:09.575392Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: - - "1527" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:51:56 GMT + - Tue, 07 Jan 2025 14:54:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -835,63 +895,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2ecb7d2-d50a-48b6-8968-76aa0a0e068c + - 7dbadbed-6975-4a21-8738-cb8e9f8495ff status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.27.230", "port":21032, "name":null, - "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", "load_balancer":{}}, "tags":[], + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5012, "name":null, + "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.27.230", "port":21032, "name":null, "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", + {"ip":"51.159.74.117", "port":5012, "name":null, "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:49:09.575392Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e8636a0-7716-47a1-ac2a-2fc29043b162 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2e1736e5-1344-4e70-a427-b46ca4c1dce2 method: DELETE response: - body: '{"id":"0e8636a0-7716-47a1-ac2a-2fc29043b162", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.27.230", "port":21032, "name":null, - "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", "load_balancer":{}}, "tags":[], + body: '{"id":"2e1736e5-1344-4e70-a427-b46ca4c1dce2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5012, "name":null, + "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:49:09.575392Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.692290Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f0e18060-73c5-4cb2-994d-b8e4b50b3109", "private_network":{"private_network_id":"a459a48e-d55c-4f57-a6c4-08af42225a60", + "id":"6847efb9-86ea-4460-904e-0237b4e57358", "private_network":{"private_network_id":"2a8dda5b-d161-455c-9099-c6c7cab5602b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.27.230", "port":21032, "name":null, "id":"d92cae62-5b62-476d-8bb0-2c6bed38879f", + {"ip":"51.159.74.117", "port":5012, "name":null, "id":"0b706ab8-5ba8-4528-92b3-54fcba574ed1", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:49:09.575392Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.692290Z", "region":"fr-par"}' headers: Content-Length: - - "1530" + - "1528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:51:57 GMT + - Tue, 07 Jan 2025 14:54:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,7 +959,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 899caa5c-4c91-4784-81be-730542a7033d + - f9200940-443b-48b4-96ec-b9738d86cff8 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-connect-psql.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-connect-psql.cassette.yaml index 70a60cfb7..366d17da7 100644 --- a/internal/namespaces/rdb/v1/testdata/test-connect-psql.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-connect-psql.cassette.yaml @@ -2,15 +2,2121 @@ version: 1 interactions: - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:51:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c578d6f-4880-43ac-b71b-20edf144acff + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: Content-Type: @@ -20,15 +2126,15 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -37,9 +2143,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:39:16 GMT + - Tue, 07 Jan 2025 14:51:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -47,36 +2153,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ba759b8-14e2-4004-bd26-7b0b0954b4a7 + - 38a5dec3-7a4c-4068-9ee8-c773d8dc1c08 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -85,9 +2191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:39:16 GMT + - Tue, 07 Jan 2025 14:51:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,36 +2201,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee5f9038-840d-4307-9144-41c7847cbbff + - 1282d4a6-d5ff-4b4c-9ea8-17710fd6e64d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -133,9 +2239,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:39:31 GMT + - Tue, 07 Jan 2025 14:52:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -143,36 +2249,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc3cc294-6dbe-4229-a532-07fc5b05c4de + - 4f59b476-c7e4-4a9f-85f7-afb6966bf07b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -181,9 +2287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:39:46 GMT + - Tue, 07 Jan 2025 14:52:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -191,36 +2297,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7511e56-f0a4-4e25-83fc-8c79ea768014 + - 19ebd138-6fe5-4294-a125-c5c6478b0245 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -229,9 +2335,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:40:01 GMT + - Tue, 07 Jan 2025 14:52:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -239,36 +2345,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc97e7a6-a08d-40f9-b7e2-95d8efd1492d + - 869d825c-170b-46ab-8a61-5246d945d232 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -277,9 +2383,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:40:16 GMT + - Tue, 07 Jan 2025 14:52:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -287,36 +2393,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7245bc8-9c96-4351-a1ae-aad38d4b4274 + - 9b9f9dc6-1a92-4d40-8a73-21730dabcce0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -325,9 +2431,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:40:31 GMT + - Tue, 07 Jan 2025 14:53:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -335,36 +2441,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9f1b8c9-b75f-4584-99d2-a135d0eda533 + - 87e11a49-5058-44ec-a3ee-2f95543d6793 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -373,9 +2479,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:40:47 GMT + - Tue, 07 Jan 2025 14:53:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,36 +2489,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4efdf7f5-c569-43c7-91b7-a08a1ce5643c + - 3f99d26e-9f86-47cf-a474-21333aec91f7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -421,9 +2527,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:41:02 GMT + - Tue, 07 Jan 2025 14:53:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,36 +2537,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4c7b6b4-2414-484b-8a9a-218eff67aa8c + - 1913c348-2b98-464d-94f3-a734b6a638b7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -469,9 +2575,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:41:17 GMT + - Tue, 07 Jan 2025 14:53:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -479,36 +2585,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6051d263-3693-4a27-bc75-2e30cfe89230 + - c7ec900c-c632-48d8-b0eb-e15b26639596 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -517,9 +2623,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:41:32 GMT + - Tue, 07 Jan 2025 14:54:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -527,36 +2633,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70fc3c77-49fb-44f3-97b6-f7c39b5aafc5 + - 197cd6db-503b-4126-9b58-5a641c8168c8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -565,9 +2671,63 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:41:47 GMT + - Tue, 07 Jan 2025 14:54:19 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7af12d5-00f9-4b5d-862a-5a378d9a8b73 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 + method: GET + response: + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:54:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -575,42 +2735,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6fb0db4-8c1f-456c-b675-ac97c3a6f3ce + - 20d16cbc-46de-43cb-bc5b-21db11fe673d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:39:15.952221Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - "1058" @@ -619,9 +2779,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:42:02 GMT + - Tue, 07 Jan 2025 14:54:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -629,59 +2789,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f01fe977-9485-4f4a-a8f9-58c3114c10e6 + - 4f77e6f7-b8a7-4b9d-aafd-5e09110afcfa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}, "tags":[], + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-20T09:39:15.952221Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}, "tags":[], + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-20T09:39:15.952221Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - - "1273" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:42:17 GMT + - Tue, 07 Jan 2025 14:55:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,59 +2849,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54291f42-05ec-4b81-b432-48153ac58735 + - 79870ec8-9859-4b4a-b595-3866d55d20b4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}, "tags":[], + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-20T09:39:15.952221Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: GET response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}, "tags":[], + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-20T09:39:15.952221Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - - "1273" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:42:17 GMT + - Tue, 07 Jan 2025 14:55:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -749,59 +2909,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27df7ada-f306-47a8-9b16-1bd6d650d4ae + - 5e71d84e-a4e1-46e9-94c1-d5ad4dcda0a4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}, "tags":[], + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-20T09:39:15.952221Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/2f11467a-278e-4e9e-a51b-74793db12f97 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c8cc9419-f938-4d5e-b85b-4cb764c818a9 method: DELETE response: - body: '{"id":"2f11467a-278e-4e9e-a51b-74793db12f97", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}, "tags":[], + body: '{"id":"c8cc9419-f938-4d5e-b85b-4cb764c818a9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:39:15.952221Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:51:47.340908Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.112", "port":9715, "name":null, - "id":"288e53c0-fb95-4e92-a0d3-709b4f9503cc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":4102, "name":null, + "id":"38498a0a-2f7a-46fe-a773-073465846830", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-20T09:39:15.952221Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:51:47.340908Z", "region":"fr-par"}' headers: Content-Length: - - "1276" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:42:18 GMT + - Tue, 07 Jan 2025 14:55:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -809,7 +2969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72db68aa-0a2e-46e8-9555-817bd2704be0 + - fd98272c-056a-4f4c-8ea1-8c17f95af0c1 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.cassette.yaml index 76a884adb..e2d053c33 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.cassette.yaml @@ -2,50 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances method: POST response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:05:09 GMT + - Tue, 07 Jan 2025 13:36:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5845e93c-5b16-4e2e-8ee3-1e1cc052890e + - a582d793-f44d-4414-b6b0-79a419b7b461 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:05:09 GMT + - Tue, 07 Jan 2025 13:36:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eda15dcb-82aa-4af8-bd50-eb82434276fa + - f8175b0c-e176-46f9-addf-c689116c8d8d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:05:25 GMT + - Tue, 07 Jan 2025 13:36:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b54318a8-fda5-483f-81a2-f395e3e22c91 + - facaba0e-e5ad-4c05-9720-f1a59d2d8c10 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:05:40 GMT + - Tue, 07 Jan 2025 13:36:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a00196ba-c1a9-49cb-b2ff-23efb6bc3ba7 + - 4c7dc99b-e9a2-45ff-8f6a-b00e00daf807 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:05:55 GMT + - Tue, 07 Jan 2025 13:37:10 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4566c9ac-e6ff-48ba-a6ff-da616ac0a545 + - 03f73d73-813a-4c17-a5c5-670139f78e45 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:06:10 GMT + - Tue, 07 Jan 2025 13:37:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd412a99-4bd4-450d-ba53-d0e7809916f1 + - 6461b702-8b70-4c83-9347-055069b175d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:06:25 GMT + - Tue, 07 Jan 2025 13:37:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a69ef7-be12-4f5b-8d1a-62d2281087c6 + - c5dccaca-e38d-4098-b0c1-74390b621dab status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:06:41 GMT + - Tue, 07 Jan 2025 13:37:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0529f1e6-f128-4665-8c15-708253cb3c11 + - 71f014d0-81d5-4dfa-ab0c-0d28b7dc42b7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:06:56 GMT + - Tue, 07 Jan 2025 13:38:11 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +431,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a856c77-1588-4b56-94fb-c2b4081030c0 + - 0ff9cdcb-23c5-44ac-89d2-339a0ace775e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:07:11 GMT + - Tue, 07 Jan 2025 13:38:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +479,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c258a3b5-aa46-4e25-aab8-8d24cbfd62ea + - 78f48247-bbc1-46ad-a5f2-bf70560b8ff1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:07:26 GMT + - Tue, 07 Jan 2025 13:38:41 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +527,203 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd0e3d3b-535e-4ea6-af1e-15155070d71f + - b706c9bd-0b49-44f9-b5df-7b86b28ae7bf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:38:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a832e9f-df1c-438c-b774-c407e1270fd8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded + method: GET + response: + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:39:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37f6cbb6-85cb-4233-a737-64bac7b08652 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded + method: GET + response: + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:39:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 32334651-3a52-4dab-806c-f474fb353de4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded + method: GET + response: + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:36:24.473371Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:07:41 GMT + - Tue, 07 Jan 2025 13:39:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,63 +731,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f3de5bf-face-4198-ae77-4d32ddefcfdd + - 44baf3bb-d910-4cb0-bb76-586581a1f196 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":2678, "name":null, "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":2678, "name":null, - "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:36:24.473371Z", + "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: GET response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":2678, "name":null, "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":2678, "name":null, - "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:36:24.473371Z", + "region":"nl-ams"}' headers: Content-Length: - - "1575" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:07:57 GMT + - Tue, 07 Jan 2025 13:39:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -711,27 +791,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f101a1e-4114-42fb-9529-7d0186d96c30 + - fae3804d-1a5c-4f61-8b76-24e63d68c9ce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"895f74c4-e352-4de5-b06f-495ec8d07722", "instance_id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", + body: '{"id":"f0a736ea-431e-40be-bcf3-4bf848ebbbc1", "instance_id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:08:57.610514Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:40:57.645936Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups method: POST response: - body: '{"id":"895f74c4-e352-4de5-b06f-495ec8d07722", "instance_id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", + body: '{"id":"f0a736ea-431e-40be-bcf3-4bf848ebbbc1", "instance_id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:08:57.610514Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:40:57.645936Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -741,9 +821,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:08:57 GMT + - Tue, 07 Jan 2025 13:40:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -751,25 +831,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8ceb38-31a4-45d7-a17f-21c4a44a902c + - 30706850-42a1-4b9f-bcdd-7279597b74f1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"895f74c4-e352-4de5-b06f-495ec8d07722", "instance_id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", + body: '{"id":"f0a736ea-431e-40be-bcf3-4bf848ebbbc1", "instance_id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:08:57.610514Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:40:57.645936Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/895f74c4-e352-4de5-b06f-495ec8d07722 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/f0a736ea-431e-40be-bcf3-4bf848ebbbc1 method: GET response: - body: '{"id":"895f74c4-e352-4de5-b06f-495ec8d07722", "instance_id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", + body: '{"id":"f0a736ea-431e-40be-bcf3-4bf848ebbbc1", "instance_id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:08:57.610514Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:40:57.645936Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -779,9 +859,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:08:58 GMT + - Tue, 07 Jan 2025 13:40:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,26 +869,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7208353e-ab1b-4343-b8f2-dfdef8a18643 + - 6e7ac99f-3a27-4ffe-ab6b-3a9645a17921 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"895f74c4-e352-4de5-b06f-495ec8d07722", "instance_id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:08:57.610514Z", "updated_at":"2023-11-09T19:08:59.589076Z", + body: '{"id":"f0a736ea-431e-40be-bcf3-4bf848ebbbc1", "instance_id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:40:57.645936Z", "updated_at":"2025-01-07T13:41:00.283901Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/895f74c4-e352-4de5-b06f-495ec8d07722 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/f0a736ea-431e-40be-bcf3-4bf848ebbbc1 method: GET response: - body: '{"id":"895f74c4-e352-4de5-b06f-495ec8d07722", "instance_id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:08:57.610514Z", "updated_at":"2023-11-09T19:08:59.589076Z", + body: '{"id":"f0a736ea-431e-40be-bcf3-4bf848ebbbc1", "instance_id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:40:57.645936Z", "updated_at":"2025-01-07T13:41:00.283901Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -819,9 +899,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:09:13 GMT + - Tue, 07 Jan 2025 13:41:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -829,63 +909,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f51b312-6ac3-4c2a-b8df-96823333ef40 + - 82c83fc8-c772-4883-8bc3-894ea17c09ec status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":2678, "name":null, "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":2678, "name":null, - "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:36:24.473371Z", + "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/f0bbf0f9-663e-46e8-8a26-e445c8a88ded method: DELETE response: - body: '{"id":"0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":2678, "name":null, "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:05:09.420567Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:36:24.473371Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":2678, "name":null, - "id":"c01d56f3-beb5-48d2-9879-29de6405160b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":11541, "name":null, + "id":"e3e16533-d9cc-483c-81ed-39b2a23195db", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:05:09.420567Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:36:24.473371Z", + "region":"nl-ams"}' headers: Content-Length: - - "1578" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:09:13 GMT + - Tue, 07 Jan 2025 13:41:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,7 +969,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed6d311e-3389-45e1-a040-a18c66b0353f + - 2b334957-2e1a-4605-a758-42fe3deaad56 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.golden b/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.golden index 896357d16..7fcc157f3 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-create-backup-simple.golden @@ -1,7 +1,7 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 895f74c4-e352-4de5-b06f-495ec8d07722 -InstanceID 0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7 +ID f0a736ea-431e-40be-bcf3-4bf848ebbbc1 +InstanceID f0bbf0f9-663e-46e8-8a26-e445c8a88ded DatabaseName rdb Name foobar Status ready @@ -14,12 +14,12 @@ Region nl-ams SameRegion false 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "895f74c4-e352-4de5-b06f-495ec8d07722", - "instance_id": "0c4a2cde-c9f4-4090-a1eb-815f29d1e3f7", + "id": "f0a736ea-431e-40be-bcf3-4bf848ebbbc1", + "instance_id": "f0bbf0f9-663e-46e8-8a26-e445c8a88ded", "database_name": "rdb", "name": "foobar", "status": "ready", - "size": 2107, + "size": 2104, "expires_at": "2032-01-02T22:04:05Z", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.cassette.yaml index 1d00a5d46..30e93f5af 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", "name":"pn-elastic-keldysh", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:44:44.890158Z", - "updated_at":"2024-11-20T09:44:44.890158Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"5937e203-e89a-44c1-bd48-136b53e11c6c", "created_at":"2024-11-20T09:44:44.890158Z", - "updated_at":"2024-11-20T09:44:44.890158Z", "subnet":"172.16.84.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"b73cc37d-6dbf-448f-8cf3-411a64342c66", "created_at":"2024-11-20T09:44:44.890158Z", - "updated_at":"2024-11-20T09:44:44.890158Z", "subnet":"fd49:821a:a311:9114::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", "name":"pn-loving-mestorf", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:50.322725Z", + "updated_at":"2025-01-07T14:30:50.322725Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"3afd149a-12ee-4962-9d81-0b2d83baa011", "created_at":"2025-01-07T14:30:50.322725Z", + "updated_at":"2025-01-07T14:30:50.322725Z", "subnet":"172.16.204.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"e9117f8e-7127-4417-93c9-20bfe4f53ee0", "created_at":"2025-01-07T14:30:50.322725Z", + "updated_at":"2025-01-07T14:30:50.322725Z", "subnet":"fdcd:e4f1:8712:6233::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,16 +22,16 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", "name":"pn-elastic-keldysh", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:44:44.890158Z", - "updated_at":"2024-11-20T09:44:44.890158Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"5937e203-e89a-44c1-bd48-136b53e11c6c", "created_at":"2024-11-20T09:44:44.890158Z", - "updated_at":"2024-11-20T09:44:44.890158Z", "subnet":"172.16.84.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"b73cc37d-6dbf-448f-8cf3-411a64342c66", "created_at":"2024-11-20T09:44:44.890158Z", - "updated_at":"2024-11-20T09:44:44.890158Z", "subnet":"fd49:821a:a311:9114::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", "name":"pn-loving-mestorf", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:50.322725Z", + "updated_at":"2025-01-07T14:30:50.322725Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"3afd149a-12ee-4962-9d81-0b2d83baa011", "created_at":"2025-01-07T14:30:50.322725Z", + "updated_at":"2025-01-07T14:30:50.322725Z", "subnet":"172.16.204.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"e9117f8e-7127-4417-93c9-20bfe4f53ee0", "created_at":"2025-01-07T14:30:50.322725Z", + "updated_at":"2025-01-07T14:30:50.322725Z", "subnet":"fdcd:e4f1:8712:6233::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: @@ -41,9 +41,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:44:45 GMT + - Tue, 07 Jan 2025 14:30:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a6271b5-6bdb-4640-aebd-7cf38f748a89 + - da1b387a-5f85-40fe-bb27-b284ca834317 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: @@ -77,29 +77,29 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:44:46 GMT + - Tue, 07 Jan 2025 14:30:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +107,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57b28915-2b57-444a-b574-be3ee6cebd95 + - 2683b6fc-eeba-4545-926e-3d35536ad11b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:44:47 GMT + - Tue, 07 Jan 2025 14:30:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +161,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab958e17-2f56-4f9a-ae67-c706f0c34642 + - b1664716-b531-4f6d-90ac-0ef826e0720b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:45:02 GMT + - Tue, 07 Jan 2025 14:31:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +215,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0ff9a88-f604-4214-a2b8-d0fcf11b6ab2 + - 26ea20a3-4ff6-4ebe-9690-8f0c970a253b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:45:17 GMT + - Tue, 07 Jan 2025 14:31:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +269,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43c9e105-1055-44c6-8227-7dcd4ef48693 + - cb6314a8-8e14-4467-8153-192fc68f5461 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:45:32 GMT + - Tue, 07 Jan 2025 14:31:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +323,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcd03de6-81ab-4f29-bdb4-03758770f12c + - 88df13f9-94d8-45c1-b272-f284d7f4b740 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:45:47 GMT + - Tue, 07 Jan 2025 14:31:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +377,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c7b97dd-1f49-4925-8ce3-ddb1b9324272 + - f2f371af-40ee-4dec-988a-51d78353a22e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:46:02 GMT + - Tue, 07 Jan 2025 14:32:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +431,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 536e100f-522d-4300-872f-22c014672d57 + - 9f6f78e7-942d-45f3-a74d-b2e2c05d0578 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:46:17 GMT + - Tue, 07 Jan 2025 14:32:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +485,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 088dab12-0999-45fc-ada3-acd15a6075ad + - 4b521123-a92f-4414-b819-28e84734fd07 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:46:33 GMT + - Tue, 07 Jan 2025 14:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +539,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4b56223-50e3-4441-bd8a-ddee8fa813f4 + - 05a3cd94-8934-48c8-97ff-5967d7f4f5d8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:46:48 GMT + - Tue, 07 Jan 2025 14:32:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +593,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4dd8d6c-cdb0-4589-8bba-d470e98bd990 + - e037d8b5-bf5b-4f6b-8892-d4e6c4b30f02 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:44:45.891443Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.84.2", "port":5432, "name":null, - "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1033" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:03 GMT + - Tue, 07 Jan 2025 14:33:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,57 +647,165 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d526e8a-0d4f-4443-b6d9-3e3fe0960879 + - cf906adc-a2af-476d-a010-41b950bc8a50 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade + method: GET + response: + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1035" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f7106f27-2a1e-41b2-b5e1-5090bd5409cd + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade + method: GET + response: + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.204.2", "port":5432, "name":null, + "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1035" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 330e3392-5df0-4204-9933-0d499a14c199 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1301" + - "1303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:18 GMT + - Tue, 07 Jan 2025 14:33:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,57 +813,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89ad776e-59ab-4afe-84ad-b9b899756d92 + - 61e8f6ad-fba1-4288-9ed4-584e0c7f61bc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1301" + - "1303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:18 GMT + - Tue, 07 Jan 2025 14:33:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -763,43 +871,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eb9002d-b6d1-4ad9-aaf0-2c9a43f0b1e3 + - cfbd19ea-b24b-4626-b548-cd7d5a2c4114 status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":1, "ips":[{"id":"6dc6a8bd-92c2-48cf-9978-a9fe5dcae452", - "address":"172.16.84.2/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "is_ipv6":false, "created_at":"2024-11-20T09:44:46.474773Z", "updated_at":"2024-11-20T09:45:18.446424Z", - "source":{"subnet_id":"5937e203-e89a-44c1-bd48-136b53e11c6c"}, "resource":{"type":"rdb_instance", - "id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "mac_address":"02:00:00:1D:E6:89", + body: '{"total_count":1, "ips":[{"id":"e6735cdb-ce2c-46f6-8d3f-5cb5e2ae2ad9", + "address":"172.16.204.2/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "is_ipv6":false, "created_at":"2025-01-07T14:30:51.648129Z", "updated_at":"2025-01-07T14:31:29.836648Z", + "source":{"subnet_id":"3afd149a-12ee-4962-9d81-0b2d83baa011"}, "resource":{"type":"rdb_instance", + "id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "mac_address":"02:00:00:13:14:34", "name":"cli-test"}, "tags":["managed", "scwdbaas"], "reverses":[], "region":"fr-par", "zone":null}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=ef87e456-9f2f-4280-b4d1-aae776b8b7f0&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=d70724e9-bdbb-4f46-b61e-4e20114f8ade&resource_type=rdb_instance method: GET response: - body: '{"total_count":1, "ips":[{"id":"6dc6a8bd-92c2-48cf-9978-a9fe5dcae452", - "address":"172.16.84.2/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "is_ipv6":false, "created_at":"2024-11-20T09:44:46.474773Z", "updated_at":"2024-11-20T09:45:18.446424Z", - "source":{"subnet_id":"5937e203-e89a-44c1-bd48-136b53e11c6c"}, "resource":{"type":"rdb_instance", - "id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "mac_address":"02:00:00:1D:E6:89", + body: '{"total_count":1, "ips":[{"id":"e6735cdb-ce2c-46f6-8d3f-5cb5e2ae2ad9", + "address":"172.16.204.2/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "is_ipv6":false, "created_at":"2025-01-07T14:30:51.648129Z", "updated_at":"2025-01-07T14:31:29.836648Z", + "source":{"subnet_id":"3afd149a-12ee-4962-9d81-0b2d83baa011"}, "resource":{"type":"rdb_instance", + "id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "mac_address":"02:00:00:13:14:34", "name":"cli-test"}, "tags":["managed", "scwdbaas"], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "535" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:18 GMT + - Tue, 07 Jan 2025 14:33:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -807,57 +915,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57196c2b-e698-4cd5-bcb7-af9bce749a1f + - 3a2a9896-212b-441c-9e0b-e29e613e5f44 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: DELETE response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1304" + - "1306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:18 GMT + - Tue, 07 Jan 2025 14:33:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -865,57 +973,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9125e30-adcd-4ba2-8e9a-52dbfb766303 + - 652d1d49-5f17-4748-ba88-c2744517a87a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:44:45.891443Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:51.154523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.84.2", - "port":5432, "name":null, "id":"bcaac50b-86f7-43c3-88af-431130220b02", "private_network":{"private_network_id":"a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip":"172.16.84.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.204.2", + "port":5432, "name":null, "id":"7a002c44-6ef5-43c2-903f-8bd84ba07033", "private_network":{"private_network_id":"ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip":"172.16.204.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:44:45.891443Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.154523Z", "region":"fr-par"}' headers: Content-Length: - - "1304" + - "1306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:19 GMT + - Tue, 07 Jan 2025 14:33:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -923,20 +1031,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 152b7d9e-d734-4186-8304-b56db1740c8d + - 2c308eed-cccc-4c49-bb29-f029fa1563c6 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ef87e456-9f2f-4280-b4d1-aae776b8b7f0 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d70724e9-bdbb-4f46-b61e-4e20114f8ade method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"ef87e456-9f2f-4280-b4d1-aae776b8b7f0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"d70724e9-bdbb-4f46-b61e-4e20114f8ade","type":"not_found"}' headers: Content-Length: - "129" @@ -945,9 +1053,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:34 GMT + - Tue, 07 Jan 2025 14:34:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -955,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 887eb1ee-c282-4f63-8061-116053f7d94a + - 5c983cf8-7f0c-4ed5-8dfd-86f246cd890e status: 404 Not Found code: 404 duration: "" @@ -965,7 +1073,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a5a0594d-b9d5-4ee7-a56f-44ca5520a00d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4 method: DELETE response: body: "" @@ -975,9 +1083,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:47:35 GMT + - Tue, 07 Jan 2025 14:34:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,7 +1093,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c97b8eb1-3519-43d2-8483-454c73a6f062 + - f7d459c0-bcba-45c0-97fa-52eab3666f5c status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.golden b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.golden index 725d23f7f..7a414fad5 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.golden +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-ipam-private-endpoint.golden @@ -2,19 +2,19 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ CreatedAt few seconds ago Region fr-par -ID ef87e456-9f2f-4280-b4d1-aae776b8b7f0 +ID d70724e9-bdbb-4f46-b61e-4e20114f8ade Name cli-test -OrganizationID 951df375-e094-4d26-97c1-ba548eeb9c42 -ProjectID 951df375-e094-4d26-97c1-ba548eeb9c42 +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 Status ready Engine PostgreSQL-15 IsHaCluster false NodeType db-dev-s -Endpoints.0.ID bcaac50b-86f7-43c3-88af-431130220b02 -Endpoints.0.IP 172.16.84.2 +Endpoints.0.ID 7a002c44-6ef5-43c2-903f-8bd84ba07033 +Endpoints.0.IP 172.16.204.2 Endpoints.0.Port 5432 -Endpoints.0.PrivateNetwork.PrivateNetworkID a5a0594d-b9d5-4ee7-a56f-44ca5520a00d -Endpoints.0.PrivateNetwork.ServiceIP 172.16.84.2/22 +Endpoints.0.PrivateNetwork.PrivateNetworkID ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4 +Endpoints.0.PrivateNetwork.ServiceIP 172.16.204.2/22 Endpoints.0.PrivateNetwork.Zone fr-par-1 Endpoints.0.PrivateNetwork.ProvisioningMode ipam LogsPolicy.MaxAgeRetention 30 @@ -55,10 +55,10 @@ Password: "class": "lssd" }, "region": "fr-par", - "id": "ef87e456-9f2f-4280-b4d1-aae776b8b7f0", + "id": "d70724e9-bdbb-4f46-b61e-4e20114f8ade", "name": "cli-test", - "organization_id": "951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id": "951df375-e094-4d26-97c1-ba548eeb9c42", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", "engine": "PostgreSQL-15", "upgradable_version": [], @@ -101,13 +101,13 @@ Password: "init_settings": [], "endpoints": [ { - "id": "bcaac50b-86f7-43c3-88af-431130220b02", - "ip": "172.16.84.2", + "id": "7a002c44-6ef5-43c2-903f-8bd84ba07033", + "ip": "172.16.204.2", "port": 5432, "name": null, "private_network": { - "private_network_id": "a5a0594d-b9d5-4ee7-a56f-44ca5520a00d", - "service_ip": "172.16.84.2/22", + "private_network_id": "ed99aef7-59eb-4bb6-ae4a-f8bb9de4bcd4", + "service_ip": "172.16.204.2/22", "zone": "fr-par-1", "provisioning_mode": "ipam" } diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.cassette.yaml index e99250620..a9011016a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", "name":"pn-dazzling-hodgkin", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:33:34.903844Z", - "updated_at":"2024-11-20T09:33:34.903844Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"930e86c5-a43e-4939-af93-2915dcb180f5", "created_at":"2024-11-20T09:33:34.903844Z", - "updated_at":"2024-11-20T09:33:34.903844Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"01ad1259-98fb-47e0-adc4-92f9c78b6498", "created_at":"2024-11-20T09:33:34.903844Z", - "updated_at":"2024-11-20T09:33:34.903844Z", "subnet":"fd49:821a:a311:1036::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", "name":"pn-gallant-nash", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:50.467896Z", + "updated_at":"2025-01-07T14:30:50.467896Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"5de13d9b-d346-4b46-b2a6-96cd6ffea88c", "created_at":"2025-01-07T14:30:50.467896Z", + "updated_at":"2025-01-07T14:30:50.467896Z", "subnet":"172.16.28.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"6a0758d2-df2a-4056-b345-38c653d1400d", "created_at":"2025-01-07T14:30:50.467896Z", + "updated_at":"2025-01-07T14:30:50.467896Z", "subnet":"fdcd:e4f1:8712:6710::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", "name":"pn-dazzling-hodgkin", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:33:34.903844Z", - "updated_at":"2024-11-20T09:33:34.903844Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"930e86c5-a43e-4939-af93-2915dcb180f5", "created_at":"2024-11-20T09:33:34.903844Z", - "updated_at":"2024-11-20T09:33:34.903844Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"01ad1259-98fb-47e0-adc4-92f9c78b6498", "created_at":"2024-11-20T09:33:34.903844Z", - "updated_at":"2024-11-20T09:33:34.903844Z", "subnet":"fd49:821a:a311:1036::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", "name":"pn-gallant-nash", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:50.467896Z", + "updated_at":"2025-01-07T14:30:50.467896Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"5de13d9b-d346-4b46-b2a6-96cd6ffea88c", "created_at":"2025-01-07T14:30:50.467896Z", + "updated_at":"2025-01-07T14:30:50.467896Z", "subnet":"172.16.28.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"6a0758d2-df2a-4056-b345-38c653d1400d", "created_at":"2025-01-07T14:30:50.467896Z", + "updated_at":"2025-01-07T14:30:50.467896Z", "subnet":"fdcd:e4f1:8712:6710::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1046" + - "1042" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:33:35 GMT + - Tue, 07 Jan 2025 14:30:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93b32dbf-622e-410c-a4bb-689eb323f3d9 + - 1fbebf76-0af7-41b8-a3fb-d9f721778c90 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:33:36 GMT + - Tue, 07 Jan 2025 14:30:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 039f613b-8015-4b4e-b704-e2d700b006bc + - b46b5378-cd1b-4e1e-ad5c-d7f91948abbd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:33:36 GMT + - Tue, 07 Jan 2025 14:30:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae7689a-3151-4c2e-9524-797b033bb446 + - 23924f43-fc30-4270-b0cb-44e013d635aa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:33:52 GMT + - Tue, 07 Jan 2025 14:31:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00986245-5fc6-4ede-9a3d-c7622acac003 + - edef29fd-19c5-413b-b026-07297ae18f37 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:34:07 GMT + - Tue, 07 Jan 2025 14:31:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81d24223-551c-45b9-8b3f-7147b84f3e3a + - da46cf9c-a3df-40dd-b6dc-b798d9f49e8b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:34:22 GMT + - Tue, 07 Jan 2025 14:31:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c494e93-4d00-4e74-8ea6-a8b86e533964 + - 178599d7-c334-4547-bc1c-0b82525ad1b3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:34:38 GMT + - Tue, 07 Jan 2025 14:31:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32ed66bc-0640-4068-ab05-9289197d0792 + - e2ead288-2109-4442-8133-dac6c504a14e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:34:53 GMT + - Tue, 07 Jan 2025 14:32:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a356cf44-cb79-4751-8af1-77ad658bc094 + - adcafdbc-bd99-443e-af38-49ca648d6736 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:35:08 GMT + - Tue, 07 Jan 2025 14:32:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 355afdf7-93d3-4e78-8daf-26996579e505 + - 9d7ab3e1-6ef3-4867-a80a-6ba5f2feec7f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:35:23 GMT + - Tue, 07 Jan 2025 14:32:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe647792-9842-41c9-ba28-a813944ae23c + - 65486e71-77ac-4c2a-b5f3-72d72be3f13d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:35:38 GMT + - Tue, 07 Jan 2025 14:32:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84655a49-ddb0-4d70-8528-4bb92f59457f + - 78386caf-60d8-4971-926f-91b0ca66a112 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:35:53 GMT + - Tue, 07 Jan 2025 14:33:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,41 +647,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a8f2a98-a6b9-4a80-8de8-88b48a3b9444 + - 65401dbd-b98b-4fb7-9f98-aa87faf44e4a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:08 GMT + - Tue, 07 Jan 2025 14:33:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,59 +701,161 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c670c5fc-d5b9-486c-84e8-7a63eb4c0aba + - 850c28c0-956d-4867-971e-bda942df2378 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: - - "1308" + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3dc33f3b-d33b-4665-a658-c99fbb0bd563 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 + method: GET + response: + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1b3981e-b1b6-4857-8254-78273c42c1c5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 + method: GET + response: + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:24 GMT + - Tue, 07 Jan 2025 14:34:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,47 +863,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6644f05-b23c-4d42-9055-0186a02fa93b + - 45eb97ac-fde6-4be1-9a84-362d76e5c234 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:33:35.805794Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: @@ -811,9 +913,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:39 GMT + - Tue, 07 Jan 2025 14:34:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -821,52 +923,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaf44db8-0c88-47fc-8452-3527b71dab1e + - 1ff3ea50-c203-45f3-bfcb-85439c510bca status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: - "1527" @@ -875,9 +977,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:54 GMT + - Tue, 07 Jan 2025 14:34:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,52 +987,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cdd4aaa-13af-44fe-9d9d-76f4d251a96f + - 21d8f977-cfdf-4311-b481-e4dc35c2b0a9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: - "1527" @@ -939,9 +1041,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:54 GMT + - Tue, 07 Jan 2025 14:34:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -949,30 +1051,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f378f8d-c641-46df-a2c7-63be156d08cf + - 775b6f78-dacf-48ab-b33a-4f28d2fa082a status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":1, "ips":[{"id":"55728b4a-a24f-4dd6-87db-5916664775d4", - "address":"172.16.88.2/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "is_ipv6":false, "created_at":"2024-11-20T09:33:36.384032Z", "updated_at":"2024-11-20T09:34:07.565922Z", - "source":{"subnet_id":"930e86c5-a43e-4939-af93-2915dcb180f5"}, "resource":{"type":"rdb_instance", - "id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "mac_address":"02:00:00:12:0A:8F", + body: '{"total_count":1, "ips":[{"id":"77360feb-22a5-4214-bafe-05b4a5797c28", + "address":"172.16.28.2/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "is_ipv6":false, "created_at":"2025-01-07T14:30:54.614732Z", "updated_at":"2025-01-07T14:31:30.892777Z", + "source":{"subnet_id":"5de13d9b-d346-4b46-b2a6-96cd6ffea88c"}, "resource":{"type":"rdb_instance", + "id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "mac_address":"02:00:00:11:AE:0C", "name":"cli-test"}, "tags":["managed", "scwdbaas"], "reverses":[], "region":"fr-par", "zone":null}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=085d86ca-6636-4d36-a1d6-700f9226a10d&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=7dcc0495-dd11-43d5-9b24-cde1900503e3&resource_type=rdb_instance method: GET response: - body: '{"total_count":1, "ips":[{"id":"55728b4a-a24f-4dd6-87db-5916664775d4", - "address":"172.16.88.2/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "is_ipv6":false, "created_at":"2024-11-20T09:33:36.384032Z", "updated_at":"2024-11-20T09:34:07.565922Z", - "source":{"subnet_id":"930e86c5-a43e-4939-af93-2915dcb180f5"}, "resource":{"type":"rdb_instance", - "id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "mac_address":"02:00:00:12:0A:8F", + body: '{"total_count":1, "ips":[{"id":"77360feb-22a5-4214-bafe-05b4a5797c28", + "address":"172.16.28.2/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "is_ipv6":false, "created_at":"2025-01-07T14:30:54.614732Z", "updated_at":"2025-01-07T14:31:30.892777Z", + "source":{"subnet_id":"5de13d9b-d346-4b46-b2a6-96cd6ffea88c"}, "resource":{"type":"rdb_instance", + "id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "mac_address":"02:00:00:11:AE:0C", "name":"cli-test"}, "tags":["managed", "scwdbaas"], "reverses":[], "region":"fr-par", "zone":null}]}' headers: @@ -983,9 +1085,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:54 GMT + - Tue, 07 Jan 2025 14:34:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -993,52 +1095,116 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd45aca-e947-448f-a31c-ec4c9f2d483a + - 715871a8-1624-431c-a404-7ff4f0147ed7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: DELETE response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", + "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' + headers: + Content-Length: + - "1530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:34:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3bf3fecf-4ec3-4456-8a50-4f28777aa4c8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", + "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 + method: GET + response: + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: - "1530" @@ -1047,9 +1213,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:55 GMT + - Tue, 07 Jan 2025 14:34:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1057,52 +1223,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aeded68-ae1c-4d35-8b27-28eb3913cac7 + - 3ac87e7f-17ce-4acf-a2b7-ad2227095c1a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"id":"085d86ca-6636-4d36-a1d6-700f9226a10d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.158.57.112", "port":22370, "name":null, - "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", "load_balancer":{}}, "tags":[], + body: '{"id":"7dcc0495-dd11-43d5-9b24-cde1900503e3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.203", "port":4837, "name":null, + "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:33:35.805794Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:54.147349Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.88.2", "port":5432, "name":null, - "id":"c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", "private_network":{"private_network_id":"8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip":"172.16.88.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, - {"ip":"51.158.57.112", "port":22370, "name":null, "id":"62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", + "init_settings":[], "endpoints":[{"ip":"172.16.28.2", "port":5432, "name":null, + "id":"ffce9c00-0a4f-44a7-a2ce-d41661290a14", "private_network":{"private_network_id":"c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip":"172.16.28.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}, + {"ip":"195.154.70.203", "port":4837, "name":null, "id":"02229f84-eb4c-4ba6-a94a-f8f07131ae21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:33:35.805794Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:54.147349Z", "region":"fr-par"}' headers: Content-Length: - "1530" @@ -1111,9 +1277,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:36:55 GMT + - Tue, 07 Jan 2025 14:34:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1121,20 +1287,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32086613-1b3f-4eaf-a759-e61994a3c9f9 + - 55ceebd0-cc9a-4f86-afdb-20b3404305e9 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"085d86ca-6636-4d36-a1d6-700f9226a10d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"7dcc0495-dd11-43d5-9b24-cde1900503e3","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/085d86ca-6636-4d36-a1d6-700f9226a10d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7dcc0495-dd11-43d5-9b24-cde1900503e3 method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"085d86ca-6636-4d36-a1d6-700f9226a10d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"7dcc0495-dd11-43d5-9b24-cde1900503e3","type":"not_found"}' headers: Content-Length: - "129" @@ -1143,9 +1309,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:37:10 GMT + - Tue, 07 Jan 2025 14:35:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1153,7 +1319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77184325-8ed4-4b5d-a5a2-44fed430d5c5 + - 23c0e516-862f-4371-bd55-9968a82886b4 status: 404 Not Found code: 404 duration: "" @@ -1163,7 +1329,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8f9569a3-c65a-442f-a566-3a2a009b1b88 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c3f95c45-66c1-4b17-aa69-ef8668792e00 method: DELETE response: body: "" @@ -1173,9 +1339,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:37:11 GMT + - Tue, 07 Jan 2025 14:35:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,7 +1349,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 757c6798-0419-485d-b653-932fc882834d + - cccec32d-0739-4a68-8ff4-a8218132989d status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.golden b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.golden index a54efb5e3..29e4a25ac 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.golden +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-ipam-private-endpoint.golden @@ -2,32 +2,32 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ CreatedAt few seconds ago Region fr-par -ID 085d86ca-6636-4d36-a1d6-700f9226a10d +ID 7dcc0495-dd11-43d5-9b24-cde1900503e3 Name cli-test -OrganizationID 951df375-e094-4d26-97c1-ba548eeb9c42 -ProjectID 951df375-e094-4d26-97c1-ba548eeb9c42 +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 Status ready Engine PostgreSQL-15 IsHaCluster false NodeType db-dev-s -Endpoints.0.ID c7ef11bb-76f1-4345-9bdf-94b0c96edb2a -Endpoints.0.IP 172.16.88.2 +Endpoints.0.ID ffce9c00-0a4f-44a7-a2ce-d41661290a14 +Endpoints.0.IP 172.16.28.2 Endpoints.0.Port 5432 -Endpoints.0.PrivateNetwork.PrivateNetworkID 8f9569a3-c65a-442f-a566-3a2a009b1b88 -Endpoints.0.PrivateNetwork.ServiceIP 172.16.88.2/22 +Endpoints.0.PrivateNetwork.PrivateNetworkID c3f95c45-66c1-4b17-aa69-ef8668792e00 +Endpoints.0.PrivateNetwork.ServiceIP 172.16.28.2/22 Endpoints.0.PrivateNetwork.Zone fr-par-1 Endpoints.0.PrivateNetwork.ProvisioningMode ipam -Endpoints.1.ID 62a1b1f3-40a4-49c8-b8c8-fc9bcded236d -Endpoints.1.IP 51.158.57.112 -Endpoints.1.Port 22370 +Endpoints.1.ID 02229f84-eb4c-4ba6-a94a-f8f07131ae21 +Endpoints.1.IP 195.154.70.203 +Endpoints.1.Port 4837 LogsPolicy.MaxAgeRetention 30 BackupSameRegion false Encryption.Enabled false Endpoint: -ID 62a1b1f3-40a4-49c8-b8c8-fc9bcded236d -IP 51.158.57.112 -Port 22370 +ID 02229f84-eb4c-4ba6-a94a-f8f07131ae21 +IP 195.154.70.203 +Port 4837 Volume: Type lssd @@ -60,17 +60,17 @@ Password: "class": "lssd" }, "region": "fr-par", - "id": "085d86ca-6636-4d36-a1d6-700f9226a10d", + "id": "7dcc0495-dd11-43d5-9b24-cde1900503e3", "name": "cli-test", - "organization_id": "951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id": "951df375-e094-4d26-97c1-ba548eeb9c42", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", "engine": "PostgreSQL-15", "upgradable_version": [], "endpoint": { - "id": "62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", - "ip": "51.158.57.112", - "port": 22370, + "id": "02229f84-eb4c-4ba6-a94a-f8f07131ae21", + "ip": "195.154.70.203", + "port": 4837, "name": null, "load_balancer": {} }, @@ -113,21 +113,21 @@ Password: "init_settings": [], "endpoints": [ { - "id": "c7ef11bb-76f1-4345-9bdf-94b0c96edb2a", - "ip": "172.16.88.2", + "id": "ffce9c00-0a4f-44a7-a2ce-d41661290a14", + "ip": "172.16.28.2", "port": 5432, "name": null, "private_network": { - "private_network_id": "8f9569a3-c65a-442f-a566-3a2a009b1b88", - "service_ip": "172.16.88.2/22", + "private_network_id": "c3f95c45-66c1-4b17-aa69-ef8668792e00", + "service_ip": "172.16.28.2/22", "zone": "fr-par-1", "provisioning_mode": "ipam" } }, { - "id": "62a1b1f3-40a4-49c8-b8c8-fc9bcded236d", - "ip": "51.158.57.112", - "port": 22370, + "id": "02229f84-eb4c-4ba6-a94a-f8f07131ae21", + "ip": "195.154.70.203", + "port": 4837, "name": null, "load_balancer": {} } diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.cassette.yaml index a82a7eae8..a70ffa02f 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"d39dc381-c120-4621-94a2-a57031b73bd6", "name":"pn-quirky-pike", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:23:26.229208Z", - "updated_at":"2024-11-20T09:23:26.229208Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"9887f732-a7a2-46eb-b34d-35d469c15c5b", "created_at":"2024-11-20T09:23:26.229208Z", - "updated_at":"2024-11-20T09:23:26.229208Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"24c0b7a5-78e3-4d84-931b-1f5659a5ee1f", "created_at":"2024-11-20T09:23:26.229208Z", - "updated_at":"2024-11-20T09:23:26.229208Z", "subnet":"fd49:821a:a311:8563::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "name":"pn-elated-sanderson", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:50.153989Z", + "updated_at":"2025-01-07T14:30:50.153989Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"3c048f37-af89-4b8f-b949-5d8737006e79", "created_at":"2025-01-07T14:30:50.153989Z", + "updated_at":"2025-01-07T14:30:50.153989Z", "subnet":"172.16.192.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"7b25b7d1-eb55-4221-89aa-a73d48356027", "created_at":"2025-01-07T14:30:50.153989Z", + "updated_at":"2025-01-07T14:30:50.153989Z", "subnet":"fdcd:e4f1:8712:ca31::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"d39dc381-c120-4621-94a2-a57031b73bd6", "name":"pn-quirky-pike", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:23:26.229208Z", - "updated_at":"2024-11-20T09:23:26.229208Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"9887f732-a7a2-46eb-b34d-35d469c15c5b", "created_at":"2024-11-20T09:23:26.229208Z", - "updated_at":"2024-11-20T09:23:26.229208Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"24c0b7a5-78e3-4d84-931b-1f5659a5ee1f", "created_at":"2024-11-20T09:23:26.229208Z", - "updated_at":"2024-11-20T09:23:26.229208Z", "subnet":"fd49:821a:a311:8563::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "name":"pn-elated-sanderson", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:50.153989Z", + "updated_at":"2025-01-07T14:30:50.153989Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"3c048f37-af89-4b8f-b949-5d8737006e79", "created_at":"2025-01-07T14:30:50.153989Z", + "updated_at":"2025-01-07T14:30:50.153989Z", "subnet":"172.16.192.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"7b25b7d1-eb55-4221-89aa-a73d48356027", "created_at":"2025-01-07T14:30:50.153989Z", + "updated_at":"2025-01-07T14:30:50.153989Z", "subnet":"fdcd:e4f1:8712:ca31::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1041" + - "1047" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:23:26 GMT + - Tue, 07 Jan 2025 14:30:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39806bea-33ec-461b-904f-7d0d4067930b + - b564e8f3-fba3-4324-b458-35acb098e97a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:23:27 GMT + - Tue, 07 Jan 2025 14:30:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c18671b-5b1d-4d9b-af6b-583717eb44e3 + - 9d956a3a-2c57-4e12-8319-530421e8a9d9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:23:27 GMT + - Tue, 07 Jan 2025 14:30:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08b6f830-4077-4ca9-9c70-bf66afb2c182 + - f21215fc-4b8e-4cac-b94f-f7e038f32386 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:23:42 GMT + - Tue, 07 Jan 2025 14:31:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d5c8248-80d9-4d80-8773-d2761308e44e + - 8c13f133-0b98-4eae-9e51-f2364d70fd4f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:23:57 GMT + - Tue, 07 Jan 2025 14:31:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4efec97b-2f00-42a9-b5ae-e87a3892f80b + - 1b18da15-0f7b-4710-bf57-7ebdd465a426 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:24:13 GMT + - Tue, 07 Jan 2025 14:31:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 841c290b-7cba-4fd9-8b5a-342fdbc92442 + - 7cf051e4-8570-47f2-8bb5-554804378d5a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:24:28 GMT + - Tue, 07 Jan 2025 14:31:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fdd3b9e-aead-4d94-acb7-020f70032a8e + - a32a89b0-c428-4166-8a93-b43648818b65 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:24:43 GMT + - Tue, 07 Jan 2025 14:32:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e3ad86e-19a1-4e15-969c-fb999af85596 + - 7e494f80-ea41-4025-ad34-0ed5e0bc5773 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:24:58 GMT + - Tue, 07 Jan 2025 14:32:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b6d7a03-32b3-4f8a-9fb2-6672b9adcf89 + - 1954aad9-6488-47fa-9980-a1cb2cf95edc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:25:13 GMT + - Tue, 07 Jan 2025 14:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d70352f9-d219-4997-8fa0-3a7bb7e12aff + - 16546bd3-cf31-4d8b-91ed-967e4a8027d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:25:28 GMT + - Tue, 07 Jan 2025 14:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d444773-8bb5-4335-bcfc-6822e348f8c7 + - 0480be7f-3e7d-4529-9aab-e6448cd1002a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:25:43 GMT + - Tue, 07 Jan 2025 14:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,47 +647,155 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8902f708-3fa2-49e4-a969-40c2c9a8d20a + - bc30f81c-b4c2-4947-a513-5f528cb8048d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 + method: GET + response: + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a552d8b-8dcb-4f5c-bde8-148a36c0522a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 + method: GET + response: + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7354bca-6b12-4903-829b-f6a20688c2dc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -697,9 +805,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:25:59 GMT + - Tue, 07 Jan 2025 14:33:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,47 +815,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36636fec-62d6-4862-b6cc-d4ea8423778e + - 6ab3f055-53be-4c50-9e6e-1eedcdb7d5fd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:23:27.094858Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: @@ -757,9 +865,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:14 GMT + - Tue, 07 Jan 2025 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -767,63 +875,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 985ef66e-4dcb-47b1-81c4-ba8d298ab6f3 + - dcbdf973-0209-4818-b41d-469cabc50d60 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: - - "1527" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:29 GMT + - Tue, 07 Jan 2025 14:34:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -831,63 +939,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 014dac7e-7cd5-45df-8186-b66a2948e9bc + - a5f08a33-7c4d-43e2-ad11-f8465cb5c426 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: - - "1527" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:29 GMT + - Tue, 07 Jan 2025 14:34:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -895,7 +1003,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f486bc6-416a-4640-a9dd-f63993d71648 + - 260d1500-3c83-448b-b7f6-6ee654fed19e status: 200 OK code: 200 duration: "" @@ -905,7 +1013,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=9e64a9e2-7938-4a37-a60f-c3657ec7369a&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=5a9a79b2-6e76-40ab-a26e-d6bffabd68e0&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -917,9 +1025,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:29 GMT + - Tue, 07 Jan 2025 14:34:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -927,63 +1035,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc447576-2258-411d-af66-048eeeb8dc35 + - c4558d10-5f54-41ac-b708-3e4e6beceff5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: DELETE response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: - - "1530" + - "1528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:29 GMT + - Tue, 07 Jan 2025 14:34:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -991,63 +1099,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbbce20c-80fc-4967-96fe-18c2ba0b81fb + - 1aa15a77-d8bc-483a-9e14-7bba6b56a3da status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.26.208", "port":17389, "name":null, - "id":"046dab4b-1774-4d56-9ad0-55d181febeea", "load_balancer":{}}, "tags":[], + body: '{"id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":14800, "name":null, + "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:23:27.094858Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:51.075453Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a2873040-b3d0-466a-a02c-d384c88d36f7", "private_network":{"private_network_id":"d39dc381-c120-4621-94a2-a57031b73bd6", + "id":"ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "private_network":{"private_network_id":"d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.26.208", "port":17389, "name":null, "id":"046dab4b-1774-4d56-9ad0-55d181febeea", + {"ip":"51.159.8.181", "port":14800, "name":null, "id":"efc7ca3b-9f17-41cc-9cdf-bebb5415748d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-20T09:23:27.094858Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:30:51.075453Z", "region":"fr-par"}' headers: Content-Length: - - "1530" + - "1528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:29 GMT + - Tue, 07 Jan 2025 14:34:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1055,20 +1163,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d609153f-9b0c-41f5-9de4-a863c4922a8d + - 09b22f28-1268-48f3-8d0f-6abe2f049ba7 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9e64a9e2-7938-4a37-a60f-c3657ec7369a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"9e64a9e2-7938-4a37-a60f-c3657ec7369a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"5a9a79b2-6e76-40ab-a26e-d6bffabd68e0","type":"not_found"}' headers: Content-Length: - "129" @@ -1077,9 +1185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:45 GMT + - Tue, 07 Jan 2025 14:34:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,7 +1195,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14a2f225-6754-46f5-b5d8-18750d084569 + - 9749529e-07f8-4923-9163-dc0e1d331108 status: 404 Not Found code: 404 duration: "" @@ -1097,7 +1205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d39dc381-c120-4621-94a2-a57031b73bd6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d11983de-bfca-49b3-9f1a-311153d6d80f method: DELETE response: body: "" @@ -1107,9 +1215,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:26:46 GMT + - Tue, 07 Jan 2025 14:34:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1117,7 +1225,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87b729fe-ff73-49e0-8bb5-bdb97318d1cd + - 10e2f51f-239d-4de7-9a89-9c20df3e0194 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.golden b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.golden index 771a5c998..1ae3440c8 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.golden +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-public-and-static-private-endpoint.golden @@ -2,32 +2,32 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ CreatedAt few seconds ago Region fr-par -ID 9e64a9e2-7938-4a37-a60f-c3657ec7369a +ID 5a9a79b2-6e76-40ab-a26e-d6bffabd68e0 Name cli-test -OrganizationID 951df375-e094-4d26-97c1-ba548eeb9c42 -ProjectID 951df375-e094-4d26-97c1-ba548eeb9c42 +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 Status ready Engine PostgreSQL-15 IsHaCluster false NodeType db-dev-s -Endpoints.0.ID a2873040-b3d0-466a-a02c-d384c88d36f7 +Endpoints.0.ID ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba Endpoints.0.IP 172.16.0.3 Endpoints.0.Port 5432 -Endpoints.0.PrivateNetwork.PrivateNetworkID d39dc381-c120-4621-94a2-a57031b73bd6 +Endpoints.0.PrivateNetwork.PrivateNetworkID d11983de-bfca-49b3-9f1a-311153d6d80f Endpoints.0.PrivateNetwork.ServiceIP 172.16.0.3/22 Endpoints.0.PrivateNetwork.Zone fr-par-1 Endpoints.0.PrivateNetwork.ProvisioningMode static -Endpoints.1.ID 046dab4b-1774-4d56-9ad0-55d181febeea -Endpoints.1.IP 51.159.26.208 -Endpoints.1.Port 17389 +Endpoints.1.ID efc7ca3b-9f17-41cc-9cdf-bebb5415748d +Endpoints.1.IP 51.159.8.181 +Endpoints.1.Port 14800 LogsPolicy.MaxAgeRetention 30 BackupSameRegion false Encryption.Enabled false Endpoint: -ID 046dab4b-1774-4d56-9ad0-55d181febeea -IP 51.159.26.208 -Port 17389 +ID efc7ca3b-9f17-41cc-9cdf-bebb5415748d +IP 51.159.8.181 +Port 14800 Volume: Type lssd @@ -60,17 +60,17 @@ Password: "class": "lssd" }, "region": "fr-par", - "id": "9e64a9e2-7938-4a37-a60f-c3657ec7369a", + "id": "5a9a79b2-6e76-40ab-a26e-d6bffabd68e0", "name": "cli-test", - "organization_id": "951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id": "951df375-e094-4d26-97c1-ba548eeb9c42", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", "engine": "PostgreSQL-15", "upgradable_version": [], "endpoint": { - "id": "046dab4b-1774-4d56-9ad0-55d181febeea", - "ip": "51.159.26.208", - "port": 17389, + "id": "efc7ca3b-9f17-41cc-9cdf-bebb5415748d", + "ip": "51.159.8.181", + "port": 14800, "name": null, "load_balancer": {} }, @@ -113,21 +113,21 @@ Password: "init_settings": [], "endpoints": [ { - "id": "a2873040-b3d0-466a-a02c-d384c88d36f7", + "id": "ed060d32-1ae4-4a7d-9b37-9502a5a9b4ba", "ip": "172.16.0.3", "port": 5432, "name": null, "private_network": { - "private_network_id": "d39dc381-c120-4621-94a2-a57031b73bd6", + "private_network_id": "d11983de-bfca-49b3-9f1a-311153d6d80f", "service_ip": "172.16.0.3/22", "zone": "fr-par-1", "provisioning_mode": "static" } }, { - "id": "046dab4b-1774-4d56-9ad0-55d181febeea", - "ip": "51.159.26.208", - "port": 17389, + "id": "efc7ca3b-9f17-41cc-9cdf-bebb5415748d", + "ip": "51.159.8.181", + "port": 14800, "name": null, "load_balancer": {} } diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.cassette.yaml index 374dc98f6..eb6aa07b1 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"05194470-da05-4611-a6d4-2182d482099e", "name":"pn-goofy-kalam", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:28:09.681797Z", - "updated_at":"2024-11-20T09:28:09.681797Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"13d0454a-919d-4d0b-ae38-3d6ffc954a17", "created_at":"2024-11-20T09:28:09.681797Z", - "updated_at":"2024-11-20T09:28:09.681797Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"05194470-da05-4611-a6d4-2182d482099e", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"89f955ce-0b2a-413d-b764-9664b43a2967", "created_at":"2024-11-20T09:28:09.681797Z", - "updated_at":"2024-11-20T09:28:09.681797Z", "subnet":"fd49:821a:a311:4eeb::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"05194470-da05-4611-a6d4-2182d482099e", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "name":"pn-magical-bassi", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:49.960233Z", + "updated_at":"2025-01-07T14:30:49.960233Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"c53044fb-fabb-424c-adf0-c75a9bfbc03c", "created_at":"2025-01-07T14:30:49.960233Z", + "updated_at":"2025-01-07T14:30:49.960233Z", "subnet":"172.16.32.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"0d10b62f-5cac-40a6-8bd6-aaca6d25a9f8", "created_at":"2025-01-07T14:30:49.960233Z", + "updated_at":"2025-01-07T14:30:49.960233Z", "subnet":"fdcd:e4f1:8712:a2ab::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"05194470-da05-4611-a6d4-2182d482099e", "name":"pn-goofy-kalam", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-20T09:28:09.681797Z", - "updated_at":"2024-11-20T09:28:09.681797Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"13d0454a-919d-4d0b-ae38-3d6ffc954a17", "created_at":"2024-11-20T09:28:09.681797Z", - "updated_at":"2024-11-20T09:28:09.681797Z", "subnet":"172.16.88.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"05194470-da05-4611-a6d4-2182d482099e", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"89f955ce-0b2a-413d-b764-9664b43a2967", "created_at":"2024-11-20T09:28:09.681797Z", - "updated_at":"2024-11-20T09:28:09.681797Z", "subnet":"fd49:821a:a311:4eeb::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"05194470-da05-4611-a6d4-2182d482099e", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "name":"pn-magical-bassi", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:30:49.960233Z", + "updated_at":"2025-01-07T14:30:49.960233Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"c53044fb-fabb-424c-adf0-c75a9bfbc03c", "created_at":"2025-01-07T14:30:49.960233Z", + "updated_at":"2025-01-07T14:30:49.960233Z", "subnet":"172.16.32.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"0d10b62f-5cac-40a6-8bd6-aaca6d25a9f8", "created_at":"2025-01-07T14:30:49.960233Z", + "updated_at":"2025-01-07T14:30:49.960233Z", "subnet":"fdcd:e4f1:8712:a2ab::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1041" + - "1043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:28:10 GMT + - Tue, 07 Jan 2025 14:30:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf38bf88-c0d1-4b22-81d9-9e578dc488f6 + - 219d64e2-1323-437a-8d6c-54a2675d07f7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:28:11 GMT + - Tue, 07 Jan 2025 14:30:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7143a826-6b13-4935-9b0d-d1e0e0382852 + - 7e3a95b4-aaac-4449-a47f-2d8ee93c1794 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:28:11 GMT + - Tue, 07 Jan 2025 14:30:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df8444bf-c27c-4409-99e2-a4e5ee4cf2dd + - c160e2a7-3fcf-4601-95ec-1009f5caf68f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:28:26 GMT + - Tue, 07 Jan 2025 14:31:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c63e24d0-5aa9-4de4-9031-9f6233299e28 + - 658c07f3-b7b2-43cd-b27f-129b991620e7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:28:41 GMT + - Tue, 07 Jan 2025 14:31:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33bcb352-2d4f-4679-a207-703c96e75998 + - 4527d579-026a-4667-aac1-9fe14af62b57 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:28:56 GMT + - Tue, 07 Jan 2025 14:31:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0964a34f-e94b-467e-9bf5-aacf558162b3 + - 65efc5b9-f488-4774-9462-245942a3206d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:29:11 GMT + - Tue, 07 Jan 2025 14:31:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 489bbaac-c14c-4878-97a5-fe1c5a43f3d9 + - 09d23fe8-cd5e-4ba1-8f47-82f92c3b3bdb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:29:27 GMT + - Tue, 07 Jan 2025 14:32:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6101518-c9b2-4dcf-8091-3b0594408c8f + - 8e81b794-47a9-47fa-8522-309ced3d2ac6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:29:42 GMT + - Tue, 07 Jan 2025 14:32:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8771e624-13eb-4a80-9cc3-eba91af26702 + - fa8bc408-9464-4746-844b-cdf759f65155 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:29:57 GMT + - Tue, 07 Jan 2025 14:32:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf8b64ca-36e9-469d-80be-bc96adea5218 + - 31192ccb-c83b-4d67-a34d-6af04492ffa0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:12 GMT + - Tue, 07 Jan 2025 14:32:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d803721-6ea7-4dbe-a4a7-c2a03054983a + - 55e24efc-e6f5-4b5c-9186-043d4d31f9dc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-21T09:28:10.713678Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:28 GMT + - Tue, 07 Jan 2025 14:33:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,45 +647,207 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78c89b56-04a2-4bb8-8fef-cfe2d4ad273f + - a61a307c-3d92-4231-889b-2144b3c26f8b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf + method: GET + response: + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:22 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e2d5e22-c168-48b6-a376-528f2abaeb62 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf + method: GET + response: + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e4a3334-ec59-40bf-a325-dd0e2a286840 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf + method: GET + response: + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, + "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1033" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:33:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 28989740-7f14-414f-a725-8d516dcc9dd7 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -695,9 +857,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:43 GMT + - Tue, 07 Jan 2025 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,45 +867,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 899c0ece-51f2-46ae-a1b4-20ce0780ff4f + - 6d272635-b52f-4b62-9770-e242fc3e911b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -753,9 +915,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:43 GMT + - Tue, 07 Jan 2025 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -763,7 +925,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55e8bce9-6f91-4249-9b41-a17d0ca5567e + - f6015044-b319-485a-b924-10bc3816ff95 status: 200 OK code: 200 duration: "" @@ -773,7 +935,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=344ab830-95e0-4a77-aaeb-f418af1ebc28&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=983f229a-3fa8-45b2-9835-97cae2c2d1cf&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -785,9 +947,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:43 GMT + - Tue, 07 Jan 2025 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -795,45 +957,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eee044e5-0513-44f6-b618-e393f00fb69f + - 5afe78ce-b8bc-4e2e-b8f8-a88a4a857869 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: DELETE response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -843,9 +1005,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:43 GMT + - Tue, 07 Jan 2025 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -853,45 +1015,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea7b186e-d888-4b74-8164-75be5d0daad9 + - 54614f07-83e1-4d61-bccd-c8834eadae1b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"id":"344ab830-95e0-4a77-aaeb-f418af1ebc28", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-21T09:28:10.713678Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:30:50.903916Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"a9982be5-7f01-47e1-9ce1-ee79c7d803ce", "private_network":{"private_network_id":"05194470-da05-4611-a6d4-2182d482099e", + "port":5432, "name":null, "id":"985255dc-9b99-487a-93d8-4847c892df7a", "private_network":{"private_network_id":"53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-20T09:28:10.713678Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:30:50.903916Z", "region":"fr-par"}' headers: Content-Length: @@ -901,9 +1063,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:43 GMT + - Tue, 07 Jan 2025 14:34:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -911,20 +1073,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6975383-ebe7-477e-8157-52ee4c5a90d0 + - 33309d6f-7174-4744-9777-88ea9b862135 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"344ab830-95e0-4a77-aaeb-f418af1ebc28","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/344ab830-95e0-4a77-aaeb-f418af1ebc28 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/983f229a-3fa8-45b2-9835-97cae2c2d1cf method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"344ab830-95e0-4a77-aaeb-f418af1ebc28","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"983f229a-3fa8-45b2-9835-97cae2c2d1cf","type":"not_found"}' headers: Content-Length: - "129" @@ -933,9 +1095,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:58 GMT + - Tue, 07 Jan 2025 14:34:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -943,7 +1105,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78e4594f-c452-45af-b8fc-3ee5400750d6 + - faf7d89d-cc81-47ab-8ac0-82e24733e8b3 status: 404 Not Found code: 404 duration: "" @@ -953,7 +1115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05194470-da05-4611-a6d4-2182d482099e + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/53fbd31b-aa1e-4e17-b6bd-cd807f9ba171 method: DELETE response: body: "" @@ -963,9 +1125,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Nov 2024 09:30:59 GMT + - Tue, 07 Jan 2025 14:34:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -973,7 +1135,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83174f04-b405-4811-8c8b-67ff9970d7ba + - 1b75cd90-89f7-44ef-8afb-3cbcd6702b83 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.golden b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.golden index f2a321bb0..2d3a4deee 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.golden +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-init-endpoints-with-static-private-endpoint.golden @@ -2,18 +2,18 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ CreatedAt few seconds ago Region fr-par -ID 344ab830-95e0-4a77-aaeb-f418af1ebc28 +ID 983f229a-3fa8-45b2-9835-97cae2c2d1cf Name cli-test -OrganizationID 951df375-e094-4d26-97c1-ba548eeb9c42 -ProjectID 951df375-e094-4d26-97c1-ba548eeb9c42 +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 Status ready Engine PostgreSQL-15 IsHaCluster false NodeType db-dev-s -Endpoints.0.ID a9982be5-7f01-47e1-9ce1-ee79c7d803ce +Endpoints.0.ID 985255dc-9b99-487a-93d8-4847c892df7a Endpoints.0.IP 172.16.0.3 Endpoints.0.Port 5432 -Endpoints.0.PrivateNetwork.PrivateNetworkID 05194470-da05-4611-a6d4-2182d482099e +Endpoints.0.PrivateNetwork.PrivateNetworkID 53fbd31b-aa1e-4e17-b6bd-cd807f9ba171 Endpoints.0.PrivateNetwork.ServiceIP 172.16.0.3/22 Endpoints.0.PrivateNetwork.Zone fr-par-1 Endpoints.0.PrivateNetwork.ProvisioningMode static @@ -55,10 +55,10 @@ Password: "class": "lssd" }, "region": "fr-par", - "id": "344ab830-95e0-4a77-aaeb-f418af1ebc28", + "id": "983f229a-3fa8-45b2-9835-97cae2c2d1cf", "name": "cli-test", - "organization_id": "951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id": "951df375-e094-4d26-97c1-ba548eeb9c42", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", "engine": "PostgreSQL-15", "upgradable_version": [], @@ -101,12 +101,12 @@ Password: "init_settings": [], "endpoints": [ { - "id": "a9982be5-7f01-47e1-9ce1-ee79c7d803ce", + "id": "985255dc-9b99-487a-93d8-4847c892df7a", "ip": "172.16.0.3", "port": 5432, "name": null, "private_network": { - "private_network_id": "05194470-da05-4611-a6d4-2182d482099e", + "private_network_id": "53fbd31b-aa1e-4e17-b6bd-cd807f9ba171", "service_ip": "172.16.0.3/22", "zone": "fr-par-1", "provisioning_mode": "static" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.cassette.yaml index c0702eea2..4e0f97039 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.cassette.yaml @@ -2,170 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1256" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Jan 2024 14:18:49 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b9e2f8ff-a261-44a5-ab25-b8ac2da70712 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 - method: GET - response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1256" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Jan 2024 14:18:50 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9e9209a-a061-40c7-a54f-606b3cd5e5a5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 - method: GET - response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:07 GMT + - Tue, 07 Jan 2025 14:27:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -173,57 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73fa8225-65e1-42bb-a39d-8c835c2b4394 + - 82ac2742-0ccf-4490-845a-54fbb35a585e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:22 GMT + - Tue, 07 Jan 2025 14:27:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -231,57 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f729e9a4-3925-4152-adc7-4dd736175287 + - b0675273-832c-4ea6-8c47-d415f4bfd848 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:37 GMT + - Tue, 07 Jan 2025 14:27:32 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -289,57 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fcbe5e4-2984-4098-a5cf-d0aff6732832 + - 75fbe42b-9e5d-40d7-9389-59d2834fc06c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:54 GMT + - Tue, 07 Jan 2025 14:27:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -347,57 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a65f8634-406d-4a1b-ad53-5d85f2b723b0 + - dcd54966-5b2c-4dab-b883-8f4fa6a90dc9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:09 GMT + - Tue, 07 Jan 2025 14:28:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,57 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecf5ce2e-d53d-4457-80d2-277ee53cc3e6 + - 18eabbba-64eb-43b3-9d0d-228b7f4997bc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:24 GMT + - Tue, 07 Jan 2025 14:28:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -463,57 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1b2eda7-2a9f-4a5d-ade0-f65ad46da398 + - 40870b3c-e072-4e5a-9fed-d610e6f03c45 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:39 GMT + - Tue, 07 Jan 2025 14:28:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -521,57 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc9c910e-a4a9-42a7-a9b6-a3194740435e + - 19c1bb1a-e495-4f50-a998-016baa57f18d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:56 GMT + - Tue, 07 Jan 2025 14:28:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -579,57 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0af23bfa-c749-49f0-9724-b3f4546a3580 + - c4c51b93-62fc-4924-a994-55594ccf9886 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:11 GMT + - Tue, 07 Jan 2025 14:29:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -637,57 +431,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a72c16bc-8002-4f3f-98d8-7693c820c876 + - 0c1a4e0e-d519-414c-9753-b507dcc7d07f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:26 GMT + - Tue, 07 Jan 2025 14:29:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,57 +479,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c6b4c1-93b9-4e34-ab6b-2ae464b32dec + - 578b49e1-9a3a-402c-9203-149df1bb97ec status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:41 GMT + - Tue, 07 Jan 2025 14:29:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -753,57 +527,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0334740-90a1-41cf-8242-a0d703842a84 + - 7f618acc-9807-4927-8f03-b938cfd3dea3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:57 GMT + - Tue, 07 Jan 2025 14:29:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -811,57 +575,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f36a9c8-1aa4-487f-8bb7-080850d4b2fc + - 75ce5a48-6ca0-467b-9fe4-b5328065707b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:22:12 GMT + - Tue, 07 Jan 2025 14:30:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -869,63 +623,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af425dcb-e0ca-4a42-b728-069dd0ff91f1 + - 4913f154-8c35-4836-97ea-5c6e28c99bcb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:22:27 GMT + - Tue, 07 Jan 2025 14:30:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -933,63 +677,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d11599a-353c-436d-9c4b-c458d3bb3138 + - aad29d6b-acfe-4b3e-a1fd-e54070d01e2a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.571642Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.263055Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:22:43 GMT + - Tue, 07 Jan 2025 14:30:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,63 +731,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95578717-9b05-40dc-8df4-a05af8f93c0f + - f4ef2f2e-592b-48b4-b04c-1bad5ef588dd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":25617, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":25617, "name":null, - "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.571642Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.263055Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":25617, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":25617, "name":null, - "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.571642Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.263055Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:22:58 GMT + - Tue, 07 Jan 2025 14:30:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1061,63 +791,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d4c7cf0-e613-419d-8531-73e43b68be98 + - 34d960b5-16ab-4cb2-8544-6052c8998fe7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":25617, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":25617, "name":null, - "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.571642Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.263055Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: GET response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":25617, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":25617, "name":null, - "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.571642Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.263055Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:22:58 GMT + - Tue, 07 Jan 2025 14:30:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1125,63 +851,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f5c5959-3050-482c-9859-251f776f8330 + - 07672f80-4975-4413-b7b7-4a0387644eca status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":25617, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":25617, "name":null, - "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.571642Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.263055Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/19fe63d7-3a09-4c5b-87ba-0db8206ea38d method: DELETE response: - body: '{"id":"7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":25617, "name":null, "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.571642Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.263055Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":25617, "name":null, - "id":"a5e709a7-9942-4e90-a0ed-3bc20b100282", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6467, "name":null, + "id":"4e6e7f82-a155-43c6-a364-925b6413e7c3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.571642Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.263055Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:22:58 GMT + - Tue, 07 Jan 2025 14:30:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1189,7 +911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 034d727b-ef9e-43ca-9872-2e7d5c6997ea + - 5c074e23-9c84-4ffc-aa3d-7261d3eaa956 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.golden b/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.golden index ea4e7642b..8b2473531 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-simple.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID 7b807f4b-9737-4b4b-bf37-fed3d35e9fe9 -Name cli-test -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID f4c1ec41-89e1-48de-b872-b63b779b0dba -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.13 -UpgradableVersion.1.ID 8af4ebbb-fd08-4038-89f6-9d8c8f1232ca -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.10 -UpgradableVersion.2.ID 764c6bb3-2f1c-4f1a-bfd5-82c540ac435c -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.5 -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID a5e709a7-9942-4e90-a0ed-3bc20b100282 -Endpoints.0.IP 51.159.206.160 -Endpoints.0.Port 25617 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID 19fe63d7-3a09-4c5b-87ba-0db8206ea38d +Name cli-test +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID 4e6e7f82-a155-43c6-a364-925b6413e7c3 +Endpoints.0.IP 195.154.71.12 +Endpoints.0.Port 6467 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID a5e709a7-9942-4e90-a0ed-3bc20b100282 -IP 51.159.206.160 -Port 25617 +ID 4e6e7f82-a155-43c6-a364-925b6413e7c3 +IP 195.154.71.12 +Port 6467 Volume: Type lssd @@ -64,36 +53,17 @@ Password: "class": "lssd" }, "region": "fr-par", - "id": "7b807f4b-9737-4b4b-bf37-fed3d35e9fe9", + "id": "19fe63d7-3a09-4c5b-87ba-0db8206ea38d", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.13" - }, - { - "id": "8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.10" - }, - { - "id": "764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.5" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "a5e709a7-9942-4e90-a0ed-3bc20b100282", - "ip": "51.159.206.160", - "port": 25617, + "id": "4e6e7f82-a155-43c6-a364-925b6413e7c3", + "ip": "195.154.71.12", + "port": 6467, "name": null, "load_balancer": {} }, @@ -136,9 +106,9 @@ Password: "init_settings": [], "endpoints": [ { - "id": "a5e709a7-9942-4e90-a0ed-3bc20b100282", - "ip": "51.159.206.160", - "port": 25617, + "id": "4e6e7f82-a155-43c6-a364-925b6413e7c3", + "ip": "195.154.71.12", + "port": 6467, "name": null, "load_balancer": {} } @@ -149,6 +119,8 @@ Password: }, "backup_same_region": false, "maintenances": [], - "encryption": null, + "encryption": { + "enabled": false + }, "password": "{4xdl*#QOoP+\u00263XRkGA)]" } diff --git a/internal/namespaces/rdb/v1/testdata/test-create-instance-with-password-generator.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-instance-with-password-generator.cassette.yaml index 910a8ce3c..5978ac7f1 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-instance-with-password-generator.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-instance-with-password-generator.cassette.yaml @@ -2,54 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:18:49 GMT + - Tue, 07 Jan 2025 14:27:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -57,57 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 972b64fe-af75-4595-8e76-08951d13972c + - eb91458b-112b-44a1-9d71-b383d4b26d9c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:18:50 GMT + - Tue, 07 Jan 2025 14:27:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -115,57 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b24730f0-c29b-41cd-aeb7-e1b90e3ee708 + - 68a09996-1bbf-41c1-95ba-d075253e9197 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:05 GMT + - Tue, 07 Jan 2025 14:27:32 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -173,57 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ede4db0e-ebb3-4efa-a4c3-2cf77983a4b6 + - 7a83ea93-eb98-4332-96ae-1966bb3e107e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:20 GMT + - Tue, 07 Jan 2025 14:27:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -231,57 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fba5c863-dbfc-4079-bd42-5b006958cdd7 + - ef6f3ab7-2b1c-428c-be8d-37c707247e83 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:35 GMT + - Tue, 07 Jan 2025 14:28:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -289,57 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97ffde60-4b12-462e-b6ae-006a0f29882b + - 0b4b62ed-cb30-47aa-a093-fd97a54c0968 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:19:54 GMT + - Tue, 07 Jan 2025 14:28:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -347,57 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e23ec160-a90e-4562-9b72-bc8debcf2122 + - 3a37fc89-bd36-4a00-b912-9d8443f7dcc3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:11 GMT + - Tue, 07 Jan 2025 14:28:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,57 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc9a9add-c3a2-4438-9ab9-af797f44fde6 + - 869844ee-8fd5-447c-9499-54fefb0887ac status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:26 GMT + - Tue, 07 Jan 2025 14:28:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -463,57 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59fe0e44-dc1f-493c-b9b7-800a2d1fa20f + - 8abfb837-4b79-41fd-81c6-9a9b292253a2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:41 GMT + - Tue, 07 Jan 2025 14:29:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -521,57 +431,191 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b23d0dcf-5d62-4c09-8816-4fd43c55c02b + - e377552a-aed7-493e-9dc0-6528c454823d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:29:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 011696d7-de0e-477e-9205-5fda76d52edb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a + method: GET + response: + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:29:33 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 944bccb2-ff5c-47f5-a652-42763f97ede6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a + method: GET + response: + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:29:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ebc00b1-745b-4073-84c6-d325eff3acb3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a + method: GET + response: + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:20:56 GMT + - Tue, 07 Jan 2025 14:30:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -579,63 +623,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec57dedd-d0ac-469f-8cd3-e044f681fa87 + - 6d7827c5-9b52-4397-96cf-ef6ca8c3ecb5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:12 GMT + - Tue, 07 Jan 2025 14:30:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -643,63 +677,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45a73b32-79e1-4fc9-b24e-90e6f5952272 + - 42fdd9ef-dd06-4fde-b3bb-89d6b5863a28 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-08T14:18:49.591466Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:27:17.223638Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:27 GMT + - Tue, 07 Jan 2025 14:30:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,63 +731,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 800176b4-39e2-412f-9ece-a5a0a366abb0 + - 36001ff0-2dc9-4dfc-ba03-2bd60e32bc9c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":5566, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":5566, "name":null, - "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.591466Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.223638Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":5566, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":5566, "name":null, - "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.591466Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.223638Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:42 GMT + - Tue, 07 Jan 2025 14:30:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -771,63 +791,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 677c6450-0a06-40a9-94e0-901f612c6159 + - ba70a9e5-cefb-407e-8b4e-0990100b0287 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":5566, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":5566, "name":null, - "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.591466Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.223638Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: GET response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":5566, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":5566, "name":null, - "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.591466Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.223638Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:43 GMT + - Tue, 07 Jan 2025 14:30:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -835,63 +851,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d870841-3040-4a45-bef8-d0c18c605bfa + - 668b123c-19c0-4295-bc30-935d15eab2f0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":5566, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":5566, "name":null, - "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.591466Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.223638Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/42da6d59-3cab-483c-a268-522725d7206e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/61ddf921-3553-4d29-94aa-cae3cb42346a method: DELETE response: - body: '{"id":"42da6d59-3cab-483c-a268-522725d7206e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.206.160", - "port":5566, "name":null, "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"61ddf921-3553-4d29-94aa-cae3cb42346a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-09T14:18:49.591466Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:27:17.223638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.206.160", "port":5566, "name":null, - "id":"5e7cded6-41dd-437e-a762-6a0998f556d7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":13853, "name":null, + "id":"702735d1-8797-41e3-9489-e0c70da7f43c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-08T14:18:49.591466Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:27:17.223638Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Jan 2024 14:21:43 GMT + - Tue, 07 Jan 2025 14:30:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,7 +911,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d298760-9472-4172-8311-ddf095f22ce3 + - e1685d5e-c19a-428b-88fa-d934337d6d79 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-user-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-user-simple.cassette.yaml index fb2cbc6eb..05f69706a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-user-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-user-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:05:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e74fe097-a154-4279-9d34-943735a45e32 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:22 GMT + - Tue, 07 Jan 2025 15:05:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c255bb4e-45e1-4c22-972b-caf9e622e0c1 + - 6f2ca151-12e3-43cf-8628-b96677134f09 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:22 GMT + - Tue, 07 Jan 2025 15:05:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cfbd11e-5b5f-4ac5-9891-2546475a6884 + - 567ea558-53d7-4c70-9d5a-cc34c1ab49da status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:37 GMT + - Tue, 07 Jan 2025 15:06:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f45892f-52e3-4b42-a26e-31039f11904a + - 65b0fb20-1e11-4459-ba28-a37a9a95d113 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:52 GMT + - Tue, 07 Jan 2025 15:06:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c791a075-f33a-4eee-94a8-40f8367ce9cc + - 58d2acc2-3c7a-48bc-9cb3-67f777b5063a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:08 GMT + - Tue, 07 Jan 2025 15:06:32 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c77f81c-602d-4b03-949d-3c5cd6c61ff0 + - 62f93f92-abeb-495f-924e-8c8b7c94e6ce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:23 GMT + - Tue, 07 Jan 2025 15:06:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e9e87d7-b987-4727-b388-2958d4c0c3bc + - 318dc7e8-153d-451f-803b-7fd999dcfef3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:38 GMT + - Tue, 07 Jan 2025 15:07:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61a34d7a-af86-4010-891f-3b3698dc091b + - b199a2d4-d69c-417e-9c24-efbf37586353 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:53 GMT + - Tue, 07 Jan 2025 15:07:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03e48cec-85e2-4fe7-af80-7aa74ee8b622 + - b68fa995-76da-4e8d-a597-b8f2fb510693 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:08 GMT + - Tue, 07 Jan 2025 15:07:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84d6079b-74a9-43c3-83da-f5faccf92fb2 + - a3f5f15d-20e5-49ec-9ff5-37dc124e8c11 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:23 GMT + - Tue, 07 Jan 2025 15:07:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af62c5eb-d546-45a8-90fa-03850734c635 + - 12867bc6-ff85-477a-a5c2-c9781b0caae5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:39 GMT + - Tue, 07 Jan 2025 15:08:03 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2633,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd1d8b63-de86-483e-ae12-7373da3440f8 + - c18e1f0d-29ee-4bc4-b364-f23419b5c8bc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:40:22.071598Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:40:22.071598Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:54 GMT + - Tue, 07 Jan 2025 15:08:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,63 +2687,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f1374b1-5e2c-4644-b9a2-41e6749d8aa5 + - 981580fc-ae8c-482f-a0e4-9284b847f19c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":5422, "name":null, "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":5422, "name":null, - "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 + method: GET + response: + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.880816Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:08:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cfa41a5e-9318-455f-ba72-9fac9199b3c4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.880816Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: GET response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":5422, "name":null, "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":5422, "name":null, - "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.880816Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:09 GMT + - Tue, 07 Jan 2025 15:08:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -717,7 +2801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b145e8-c532-4dab-8565-245e5cca9686 + - ad8e0d27-4a54-446e-8346-ef0b927d934b status: 200 OK code: 200 duration: "" @@ -728,8 +2812,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce/users + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2/users method: POST response: body: '{"name":"cli-test", "is_admin":false}' @@ -741,9 +2825,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:09 GMT + - Tue, 07 Jan 2025 15:08:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -751,63 +2835,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 016ee6c0-cf5a-426c-abc4-2b8c0bee34c5 + - fc07e358-2c38-4bab-939c-306f375b6e90 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":5422, "name":null, "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":5422, "name":null, - "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.880816Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/5a3482ad-0806-4871-9692-fe002851cfce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/bcc22fb0-907e-4550-8905-70c5d01bd2f2 method: DELETE response: - body: '{"id":"5a3482ad-0806-4871-9692-fe002851cfce", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":5422, "name":null, "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"bcc22fb0-907e-4550-8905-70c5d01bd2f2", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:22.071598Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.880816Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":5422, "name":null, - "id":"b48cbfd9-1111-4d63-9c7a-e745748fb2e3", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":25202, "name":null, + "id":"298f1ab5-d641-4086-89a9-acde773ac475", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:22.071598Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.880816Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:10 GMT + - Tue, 07 Jan 2025 15:08:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -815,7 +2895,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01bd725d-b505-4b3f-a7ff-9b1eeb0bb372 + - 3fdfaabc-3e63-4bf3-8572-27beb2872bcd status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-create-user-with-password-generator.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-create-user-with-password-generator.cassette.yaml index e304e66bb..47ebbd2ae 100644 --- a/internal/namespaces/rdb/v1/testdata/test-create-user-with-password-generator.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-create-user-with-password-generator.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:05:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2b09b6b1-f2b3-4678-a19b-0d4be245fb4f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:19 GMT + - Tue, 07 Jan 2025 15:05:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b80af67-c111-46f4-9b46-23adbcfd149a + - ad487149-c1ea-451b-9875-836d66bfb72b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:19 GMT + - Tue, 07 Jan 2025 15:05:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9960d1c4-a373-4df0-889b-6f1e2c293723 + - ad9e4922-a540-405e-bb0a-46c2e2d16777 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:34 GMT + - Tue, 07 Jan 2025 15:06:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a9bba52-1712-4a47-ac5f-99e4693da3bd + - f21b5fea-f598-4a70-95a4-cca35907f56b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:49 GMT + - Tue, 07 Jan 2025 15:06:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0401ad5-a29f-45f2-9e94-a740a89416e3 + - b381ce0c-916c-4ff6-bd7a-13f174763519 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:04 GMT + - Tue, 07 Jan 2025 15:06:32 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddc52a43-fbec-4ce1-8104-bb30072110a0 + - 013b3ee9-2b61-43e6-a446-220079ee1534 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:20 GMT + - Tue, 07 Jan 2025 15:06:47 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0bcad35-d4e9-4101-abc6-1b63f87dbffb + - 5f5d5d0b-db1e-435f-b6ee-ecbccb7f51e6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:35 GMT + - Tue, 07 Jan 2025 15:07:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a56dd8c2-e310-473f-9887-43f39cfb4c06 + - 72c15e55-efbf-4f59-a3da-abc85b60e64b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:41:51 GMT + - Tue, 07 Jan 2025 15:07:17 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b2948b6-2bc7-4cef-84b7-cc6cfc201f28 + - fbb04cbd-0c37-4a01-b9f6-d9cf0310d730 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:06 GMT + - Tue, 07 Jan 2025 15:07:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a0e34dd-d4b0-44f4-a7de-ba941bf22a0f + - 22cb7be6-24fd-45da-90a2-0aa0b671e9e1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:22 GMT + - Tue, 07 Jan 2025 15:07:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5f3704d-1e5d-4d83-8bdc-be0441d804ce + - 0054542e-9f25-4fea-bfa3-114157aacb57 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:08:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d10f8c4-3025-4880-8bf9-827a81a879d8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab + method: GET + response: + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:37 GMT + - Tue, 07 Jan 2025 15:08:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2681,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fd954fd-a6b1-4fc4-9707-17cea1b54aeb + - c31a7363-15bd-4b53-8c7a-d4d323bcb150 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:40:18.928969Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:40:18.928969Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:05:46.837808Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:42:52 GMT + - Tue, 07 Jan 2025 15:08:33 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,63 +2735,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7afc7aa9-6462-40b6-9865-29348cd4bf4e + - 87dc048a-a143-4d4e-8cb0-426af418d429 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":16588, "name":null, "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":16588, "name":null, - "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.837808Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: GET response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":16588, "name":null, "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":16588, "name":null, - "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.837808Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:07 GMT + - Tue, 07 Jan 2025 15:08:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -717,7 +2795,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c16e865-4805-4522-a7e0-31d47cac0418 + - a826bf0f-3a62-4e91-bac8-528511f67ca7 status: 200 OK code: 200 duration: "" @@ -728,8 +2806,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af/users + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab/users method: POST response: body: '{"name":"cli-test", "is_admin":false}' @@ -741,9 +2819,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:07 GMT + - Tue, 07 Jan 2025 15:08:48 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -751,63 +2829,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a3b5319-1ca0-4a4b-90fc-dfc074131fe4 + - e2497ddb-1c99-46db-a6f1-b2b545c69803 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":16588, "name":null, "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":16588, "name":null, - "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.837808Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/586ca3be-87d4-428c-8e58-ef844ca265af + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/88921afd-6047-46af-9732-0a7ac3842fab method: DELETE response: - body: '{"id":"586ca3be-87d4-428c-8e58-ef844ca265af", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":16588, "name":null, "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"88921afd-6047-46af-9732-0a7ac3842fab", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:40:18.928969Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:05:46.837808Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":16588, "name":null, - "id":"15854c7d-6ac4-409c-a56a-85ab0f2539bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":16831, "name":null, + "id":"b7d40391-84bb-44a2-a61b-f5f793bfab4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:40:18.928969Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:05:46.837808Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:08 GMT + - Tue, 07 Jan 2025 15:08:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -815,7 +2889,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff848e04-34b1-43c9-8e89-7b70bd7f98ab + - 55172acc-7b45-4f51-a928-6b877f752ce7 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.cassette.yaml index 502a2c5b0..e81eb10b6 100644 --- a/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.cassette.yaml @@ -2,54 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:58:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cdb6f8bf-f220-4fe2-b0a5-b75e90921ace + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:44:45 GMT + - Tue, 07 Jan 2025 14:58:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -57,57 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f854645-b5be-483c-8ef8-844142f54276 + - a6296ce5-5c28-42e0-a6a2-139d8a5c3f27 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:44:45 GMT + - Tue, 07 Jan 2025 14:58:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -115,57 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47304fbc-dc17-4462-94bd-1ef13971b160 + - 8a463695-3679-42a9-b20a-6edd581794a9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:45:00 GMT + - Tue, 07 Jan 2025 14:59:10 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -173,57 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d68f3c6-27f1-456f-8dd2-08c359087898 + - 4ba3d797-4a4b-440d-923a-4a9c3f3c2ad4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:45:16 GMT + - Tue, 07 Jan 2025 14:59:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -231,57 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b2c1fe8-4f73-46f7-b10c-74d1e4a70dc4 + - 1f061abf-bd0b-4938-a5f7-01c987c383f1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:45:31 GMT + - Tue, 07 Jan 2025 14:59:41 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -289,57 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8504f722-3ff5-4ac2-aad0-7c6d1876548e + - 82add25c-98b0-4b8b-8ef5-03472d5e30d0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:45:46 GMT + - Tue, 07 Jan 2025 14:59:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -347,57 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b7abc86-6319-4c18-824f-1332b7060b60 + - ed4c6cb3-298e-49f6-b28c-e510c6608b0e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:46:01 GMT + - Tue, 07 Jan 2025 15:00:11 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,57 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0078aef-f5fc-4df8-9fdc-b5a5357dbb04 + - 2ed76232-2535-4e5a-92b2-8365e5520752 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:46:17 GMT + - Tue, 07 Jan 2025 15:00:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -463,57 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cfaa20c-0acd-4d73-aeae-fb28a330c72a + - dda7d48f-ec22-4f24-8837-a545758976b6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:46:32 GMT + - Tue, 07 Jan 2025 15:00:41 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -521,57 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94aa9b4-767a-4d6e-8b8d-32fb0491e325 + - b9218a9d-722b-40c8-9a37-b7fd2eb9b554 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:46:47 GMT + - Tue, 07 Jan 2025 15:00:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -579,63 +2585,143 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77d63de1-cdb7-4cbf-b1e4-ba7a2b9cb545 + - d804bbc3-5379-42cb-b4e3-93de52178325 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:01:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bdc01df8-fddd-45d9-b8f3-e796b65e9051 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 + method: GET + response: + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:01:26 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0643467-0403-4c76-8926-472c7644ca96 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 + method: GET + response: + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:47:02 GMT + - Tue, 07 Jan 2025 15:01:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -643,63 +2729,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09fca8cf-23f3-41c1-9f97-1b95bc7f30f9 + - 9a887ce0-3af7-4f83-b040-37ae1f5ba437 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:44:45.308248Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:58:55.217936Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:47:18 GMT + - Tue, 07 Jan 2025 15:01:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,63 +2783,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34fad6d6-8aa4-4d67-be28-488ea7a43222 + - 73ee3ab4-5079-489f-ac91-5497a3a9a987 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":3894, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":3894, "name":null, - "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:44:45.308248Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:58:55.217936Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":3894, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":3894, "name":null, - "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:44:45.308248Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:58:55.217936Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:47:33 GMT + - Tue, 07 Jan 2025 15:02:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -771,63 +2843,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f334c9c-0d4b-4a99-ba88-6a63b6bd81ef + - f2320dc6-d81c-477a-b411-d0c774832049 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":3894, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":3894, "name":null, - "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:44:45.308248Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:58:55.217936Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: GET response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":3894, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":3894, "name":null, - "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:44:45.308248Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:58:55.217936Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:47:33 GMT + - Tue, 07 Jan 2025 15:02:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -835,7 +2903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb23e78a-a5d4-452a-abed-b647b6d314d5 + - 65e0f353-bf37-46a1-b9c9-e304d4f52a70 status: 200 OK code: 200 duration: "" @@ -844,8 +2912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4/users?name=&order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757/users?name=&order_by=name_asc&page=1 method: GET response: body: '{"users":[{"name":"foobar", "is_admin":true}], "total_count":1}' @@ -857,9 +2925,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:47:33 GMT + - Tue, 07 Jan 2025 15:02:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -867,63 +2935,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84439941-7025-4e89-a316-ae9bf765f448 + - cb21c2dc-15eb-4bd3-9466-89f4149f5554 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":3894, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":3894, "name":null, - "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:44:45.308248Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:58:55.217936Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f06b9c83-68e9-4459-89b9-0e91a982dfa4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c3a3278c-13a7-49bd-ad39-36f49fd60757 method: DELETE response: - body: '{"id":"f06b9c83-68e9-4459-89b9-0e91a982dfa4", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":3894, "name":null, "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c3a3278c-13a7-49bd-ad39-36f49fd60757", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:44:45.308248Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:58:55.217936Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":3894, "name":null, - "id":"0e67a6da-2408-480a-bb26-5639cdbe8907", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":6970, "name":null, + "id":"8862200b-bb1c-4d7b-8ec7-5f49389c682e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:44:45.308248Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:58:55.217936Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:47:34 GMT + - Tue, 07 Jan 2025 15:02:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -931,7 +2995,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16a064b0-4414-44d9-b0ef-50959f1dfdd0 + - 72d17be1-d2ac-4037-9448-7b9b0c31a5bb status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.golden b/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.golden index 8544b6e1e..e0ebff599 100644 --- a/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.golden +++ b/internal/namespaces/rdb/v1/testdata/test-database-get-url-postgres.golden @@ -1,5 +1,5 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -postgresql://foobar@51.159.207.166:3894 +postgresql://foobar@51.159.74.117:6970 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"postgresql://foobar@51.159.207.166:3894" +"postgresql://foobar@51.159.74.117:6970" diff --git a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.cassette.yaml index 0087d7f3b..9cc408fe6 100644 --- a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:26:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d9278b7-71e3-46e7-b5a0-5d0a418a1828 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:25 GMT + - Tue, 07 Jan 2025 13:26:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c708adb5-0bcd-4468-87fe-651aa6552b15 + - 7535a2e6-e0d4-4952-a4ba-f5626d0ce50d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:26 GMT + - Tue, 07 Jan 2025 13:26:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0a03c46-8d1b-42e5-914b-7a0a8e2c0d9e + - 5bf23892-ad87-41da-88e3-e150fdacc1b3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:41 GMT + - Tue, 07 Jan 2025 13:27:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55267437-6418-41ad-99fe-63ca2eb7a002 + - 04f55b45-5046-4c12-991f-2dd1d61242de status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:56 GMT + - Tue, 07 Jan 2025 13:27:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd40874-4a5c-4cc2-ab89-19534c4836eb + - 5c622225-9911-49a9-99ed-3918a8888699 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:11 GMT + - Tue, 07 Jan 2025 13:27:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b5de870-51b8-45fb-a132-0358e557498a + - dc879717-70b0-4b2f-84af-5ec21db655ce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:27 GMT + - Tue, 07 Jan 2025 13:27:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c82accd7-01bd-46ef-bebc-708053c2b3a3 + - 16c8ae5e-3d65-427c-ab06-0b17d57d2a1b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:42 GMT + - Tue, 07 Jan 2025 13:28:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed45d26a-809b-4a84-8b50-a0f6daa47e06 + - 00c252dd-e767-41b3-a85f-3ab0e7d3cd59 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:57 GMT + - Tue, 07 Jan 2025 13:28:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a57655f-6eb3-40a6-87a7-34f647e2b208 + - 5ffe24c8-dbdd-417e-a6d0-ee6fb37bf2f3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:12 GMT + - Tue, 07 Jan 2025 13:28:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7bde316-5063-4d51-885c-40a5f5199a63 + - 71e4d416-b186-4797-92d6-e1aefe3e2caa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:28 GMT + - Tue, 07 Jan 2025 13:28:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55b57c52-fe58-4f0b-8c8b-d2ac6b08b943 + - efc3c09f-8ab0-4caf-a2bb-fa306fa385cd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:43 GMT + - Tue, 07 Jan 2025 13:29:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2633,245 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79de6830-b1e7-4a3b-a23a-bc8113df7eb2 + - ef3e975f-3848-44db-869c-812f4c380410 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 + method: GET + response: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:29:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4cf2aa73-cae3-40f1-8ae1-3c7925c42d6f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 + method: GET + response: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:29:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3bf3b594-f326-4597-8906-473b47ced4d8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 + method: GET + response: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:29:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48e51a57-61ad-49ca-b7f6-cc09efa307d0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 + method: GET + response: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:30:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61388d3c-fd74-4233-85f3-2e996809592f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.788377Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.788377Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:59 GMT + - Tue, 07 Jan 2025 13:30:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,59 +2879,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db6d749d-12fa-46e8-b3fb-54ad49b28a3e + - 08c6c01e-e8f7-4665-889d-ce9ab821cc0d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.788377Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.788377Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:14 GMT + - Tue, 07 Jan 2025 13:30:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -713,63 +2933,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b70f4f-49d9-4382-8712-10dd937cc0e7 + - 6817e5e5-feaa-4ddf-8ccc-1289aebda6ef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 + method: GET + response: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.509267Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:30:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2de1bfa2-c3b5-4dce-a8ab-6cb4151c55ad + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:29 GMT + - Tue, 07 Jan 2025 13:31:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -777,13 +3047,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69ddaa6d-0d87-4bf1-bb9e-9847b8c3d69e + - a3bdd34f-c7ac-4e9c-8911-c8338b4fd2df status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} @@ -791,12 +3061,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: @@ -807,9 +3077,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:30 GMT + - Tue, 07 Jan 2025 13:31:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,63 +3087,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aee29b78-28b5-491d-8459-7522a19c1fd2 + - e03ae801-4537-40df-b4c6-10f9d27b2ef3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":10511, "name":null, "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":10511, "name":null, "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:30 GMT + - Tue, 07 Jan 2025 13:31:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,63 +3147,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94436388-152c-4783-9969-d778495997bb + - 60f94e55-d7c1-4190-aa65-c9e6ded45493 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:45 GMT + - Tue, 07 Jan 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -945,24 +3207,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12789bb9-b2b2-4adf-8119-d938b1635248 + - ff164510-5a4c-4620-91e6-079fb71cfa0d status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":2}' headers: @@ -973,9 +3235,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,7 +3245,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68178b24-1ac6-49f4-b52f-b9c5a790b104 + - 4f8df0e0-24bf-4f73-8e20-19cbc9869bc7 status: 200 OK code: 200 duration: "" @@ -994,8 +3256,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls method: DELETE response: body: '{"rules":[]}' @@ -1007,9 +3269,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1017,24 +3279,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5611cbeb-f0b0-4fd6-b314-308bafa88d9a + - a71be2e1-b4fd-4315-8c67-14e37db91c9d status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":2}' headers: @@ -1045,9 +3307,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:31:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1055,63 +3317,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a377287-cb9d-46b8-9bb6-ef0429b6f26c + - e3fbfe25-b47c-4c42-bd80-d3ed89b8aac5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:31:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1119,24 +3377,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72d31de8-cf20-4452-8366-19ed0603cb4b + - 3a73666b-a067-4413-876e-04a3960e6f9c status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":18503, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":2}' headers: @@ -1147,9 +3405,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:31:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1157,23 +3415,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66cbb549-7653-4d50-ab75-ebbd26d4594c + - 22aaad03-c644-4574-8615-0a3e85ecc47f status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"192.168.1.0/32", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls method: DELETE response: - body: '{"rules":[{"ip":"192.168.1.0/32", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"192.168.1.0/32", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: Content-Length: @@ -1183,9 +3441,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:49 GMT + - Tue, 07 Jan 2025 13:31:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1193,21 +3451,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bf3f264-9fa6-4fee-aeb8-c34032b69139 + - 76b5f04c-9df0-4f2f-a70c-0da55b02e67e status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' headers: Content-Length: @@ -1217,9 +3475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:49 GMT + - Tue, 07 Jan 2025 13:31:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1227,63 +3485,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03f19710-d180-4a02-9180-653552b0b4d4 + - 434c16c9-b279-4b9f-b189-8671af413e36 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":10511, "name":null, "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":10511, "name":null, "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:49 GMT + - Tue, 07 Jan 2025 13:31:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1291,63 +3545,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78610718-cfc4-405a-88d5-445d6492f965 + - 258a542d-e774-4bd5-afbf-4b92e1ae9378 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:31:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1355,21 +3605,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbcc49b8-dcce-416e-8189-0a47eddcd13e + - 60f3a6ee-933a-490d-84d0-7c188644ee89 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' headers: Content-Length: @@ -1379,9 +3629,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:31:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1389,7 +3639,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aca906a-0592-4e43-b8a6-daca49402d9a + - 6b89f5c8-8f5f-4f2f-b6fd-5d0811c32004 status: 200 OK code: 200 duration: "" @@ -1400,8 +3650,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls method: DELETE response: body: '{"rules":[]}' @@ -1413,9 +3663,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:31:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1423,21 +3673,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b165aa44-6456-4a98-be29-088a6bf6cb7e + - ae4d3ce2-bec8-473a-87d9-4e46699833f8 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":18503, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10511, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' headers: Content-Length: @@ -1447,9 +3697,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:31:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1457,63 +3707,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa50636c-ef66-4f39-a3b9-9899bdcde89c + - 3ec2cdfc-1502-4aaa-b162-ca440b83c165 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: GET response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:05 GMT + - Tue, 07 Jan 2025 13:31:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1521,63 +3767,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8034f099-41d1-437c-86f2-0a2de8d26c07 + - 61a982bc-c80d-4655-937b-6c7bd653c5b9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b815917f-4d89-4151-841c-807805d06c5b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9ace3dca-22c0-42e5-bbfe-25d5f1748ad7 method: DELETE response: - body: '{"id":"b815917f-4d89-4151-841c-807805d06c5b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":18503, "name":null, "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9ace3dca-22c0-42e5-bbfe-25d5f1748ad7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.788377Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.509267Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":18503, "name":null, - "id":"99272836-3c0e-460c-9d0b-20d8f5917d45", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":10511, "name":null, + "id":"2a4af49f-40f9-4f24-86aa-7c2b461d2e21", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.788377Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.509267Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:05 GMT + - Tue, 07 Jan 2025 13:31:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1585,7 +3827,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 938d05ac-4b4e-4712-8c64-c10a6532ce99 + - df624820-a1e5-4efa-a0ea-7e1721401a5f status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.golden b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.golden index 572044ad9..9e7014a4e 100644 --- a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.golden +++ b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-not-set.golden @@ -2,21 +2,21 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rule 1.2.3.4/32 was not set. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 18503 tcp inbound allow Allow All -192.168.1.0/32 18503 tcp inbound allow Allow 192.168.1.0/32 +0.0.0.0/0 10511 tcp inbound allow Allow All +192.168.1.0/32 10511 tcp inbound allow Allow 192.168.1.0/32 βœ… ACL rule 192.168.1.0/32 successfully deleted. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 18503 tcp inbound allow Allow All +0.0.0.0/0 10511 tcp inbound allow Allow All βœ… ACL rule 10.10.10.10/32 was not set. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 18503 tcp inbound allow Allow All +0.0.0.0/0 10511 tcp inbound allow Allow All 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { "Rules": [ { "ip": "0.0.0.0/0", - "port": 18503, + "port": 10511, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -24,7 +24,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/32", - "port": 18503, + "port": 10511, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -40,7 +40,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 18503, + "port": 10511, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -56,7 +56,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 18503, + "port": 10511, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.cassette.yaml index fa0374f81..5be5fb72b 100644 --- a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:26:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72a9e33f-7905-4d7f-abc9-90e5d8bab4e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:25 GMT + - Tue, 07 Jan 2025 13:26:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f2bd893-cd71-4bab-a51f-d05c4585bb24 + - eb1eecf8-773e-487e-a50a-050d8592499e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:26 GMT + - Tue, 07 Jan 2025 13:26:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f896a059-0ca3-45db-ab9b-1d60514ae572 + - 1333c967-996e-49df-86fc-f442b53e38c6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:41 GMT + - Tue, 07 Jan 2025 13:27:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25978b93-ad4a-46b5-9d61-1a8403829f52 + - 8357f049-5f1e-4f65-8954-a27d15078a15 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:56 GMT + - Tue, 07 Jan 2025 13:27:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b479e383-680d-4521-9478-0424966bcea9 + - 810a116b-cbb2-416b-b6d7-5e4a51855326 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:11 GMT + - Tue, 07 Jan 2025 13:27:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e6de645-6721-4bcf-9371-3c787d237929 + - b39f35ab-8bbb-4c6e-98d0-7b4cc610e01f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:27 GMT + - Tue, 07 Jan 2025 13:27:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8ac1477-278e-47e7-93ba-a70565285d2b + - fde0d09f-e0c1-40fc-a33d-8cfc7ad2d61a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:42 GMT + - Tue, 07 Jan 2025 13:28:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1ab8d0c-3959-48f2-8331-a3b4d6caa759 + - 27349ff1-00b7-4f2a-957c-de1c09e4d2b7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:57 GMT + - Tue, 07 Jan 2025 13:28:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c81fab43-4f7b-4307-b897-9bbb0b39bf9e + - fba7cdb2-9d58-470a-92ff-1043a25b9d62 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:12 GMT + - Tue, 07 Jan 2025 13:28:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cb3c456-0510-4f23-8187-561b5505a044 + - d8b8bd7b-c695-4c59-a2fb-0d2789e9a7d7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:28 GMT + - Tue, 07 Jan 2025 13:28:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,59 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a80c7e3-f40c-4c24-9364-5b6fa720417b + - 5e3a9fa6-5cb4-4880-9608-2918be401029 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.703850Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.703850Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:45 GMT + - Tue, 07 Jan 2025 13:29:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,59 +2633,149 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30682b29-4e52-44d7-b1bd-52371e72c4fa + - 15d694b7-8abe-4f6c-bab4-4eac137c532c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 + method: GET + response: + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:29:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d0fd9428-a508-4b41-a863-6799cb544123 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 + method: GET + response: + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:29:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38cc0c37-5ca0-4a78-bd02-27e20e8ce200 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.703850Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.703850Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:00 GMT + - Tue, 07 Jan 2025 13:29:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -659,63 +2783,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 148558e0-df7e-4bbb-b7eb-1b8e65bffbdf + - 239a9773-3ae4-413b-9cd1-b0d42877d6ee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.619475Z", "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:16 GMT + - Tue, 07 Jan 2025 13:30:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -723,37 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6fed20d-fd4e-416c-8934-034cc085c0ba + - fda4340a-6de9-4ebb-9a16-b6033fdf73d1 status: 200 OK code: 200 duration: "" - request: - body: '{"access_key":"SCWHJNSK2028RFV4SE6K", "secret_key":null, "description":"lmarabese - IAM API key", "created_at":"2023-02-07T12:50:30.653520Z", "updated_at":"2023-02-07T12:50:30.653520Z", - "expires_at":null, "default_project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "editable":true, "creation_ip":"51.159.46.153", "user_id":"77e7fa85-f305-4ea2-afea-09571a039336"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"access_key":"SCWHJNSK2028RFV4SE6K", "secret_key":null, "description":"lmarabese - IAM API key", "created_at":"2023-02-07T12:50:30.653520Z", "updated_at":"2023-02-07T12:50:30.653520Z", - "expires_at":null, "default_project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "editable":true, "creation_ip":"51.159.46.153", "user_id":"77e7fa85-f305-4ea2-afea-09571a039336"}' + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "361" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:16 GMT + - Tue, 07 Jan 2025 13:30:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,13 +2897,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 093b976f-8ff5-4abb-bf9c-8396181f87f4 + - 61c1ea39-2044-403c-b9cd-a32f68c90eb0 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' form: {} @@ -775,12 +2911,12 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' headers: @@ -791,9 +2927,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:16 GMT + - Tue, 07 Jan 2025 13:30:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,63 +2937,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de20cfc7-0db7-4765-bfea-99d9686a2262 + - 19019eb2-8e26-47f8-9ba5-d9fc2be1ce4c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:16 GMT + - Tue, 07 Jan 2025 13:30:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -865,63 +2997,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1325c336-3b71-4eb3-82dd-d6d054488bb8 + - a2c01b55-3edd-450f-ab1d-b33a6c4f54dc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:32 GMT + - Tue, 07 Jan 2025 13:30:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -929,29 +3057,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 025c344f-0c99-405d-b3c8-9d59e730f5ea + - d0a03b11-9a35-4249-9ce3-c523f6a095ee status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: Content-Length: @@ -961,9 +3089,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:32 GMT + - Tue, 07 Jan 2025 13:30:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -971,63 +3099,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f263c56-fc91-4990-b1e0-2e67bd013196 + - 610fe7e3-7205-40e7-86bb-1b123ab2af00 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:32 GMT + - Tue, 07 Jan 2025 13:30:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1035,63 +3159,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c7f15a9-0584-430c-87cb-cc67398f3d3d + - 10189c8a-18eb-44ec-a649-a9b846f1f204 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:30:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,33 +3219,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d1ab277-787b-4e94-a105-a58625f1a05c + - 50a0227b-7f88-4b66-bfb1-410020c8a184 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/32", - "port":28955, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/32", - "port":28955, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: Content-Length: @@ -1135,9 +3255,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:30:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,63 +3265,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c5d95bf-4f04-41a0-8a10-bc4f48d0d175 + - 2f8736fb-b00b-409e-bcd9-f2325d2523f5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:31:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1209,63 +3325,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbc50f37-dfc6-4ac8-b399-7aea8f935468 + - d19f0ccc-e568-4216-ae44-625caed834e0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:31:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1273,31 +3385,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7536a32-f72d-4f48-8e3a-2a9ecddda646 + - 474cdaa7-a41a-4cf0-820a-962e5c001dea status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/32", - "port":28955, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":4}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/32", - "port":28955, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":4}' headers: Content-Length: @@ -1307,9 +3419,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:31:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1317,23 +3429,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2d9188d-8dff-4ae5-a9a1-abb1c483a1f6 + - 85d87f82-42b1-4437-a1f1-375a1cf37a73 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"1.2.3.4/32", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls method: DELETE response: - body: '{"rules":[{"ip":"1.2.3.4/32", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"1.2.3.4/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' headers: Content-Length: @@ -1343,9 +3455,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:31:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1353,27 +3465,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a851b91b-5cea-4cdd-b063-695574f27349 + - 7d348b11-9e4a-4890-be40-56dba08495e3 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":3}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":3}' headers: Content-Length: @@ -1383,9 +3495,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:31:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,63 +3505,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e66872c-d0d2-49f7-bade-31b6b16a1c90 + - 27245527-0ca4-4efa-bb18-9e2978031682 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:31:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1457,63 +3565,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f35e7b9-b5e3-4152-af60-76433efb46c1 + - edd7acab-faef-4f3b-8f51-5873ad8f8410 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:19 GMT + - Tue, 07 Jan 2025 13:31:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1521,27 +3625,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16100d45-2f5a-4575-8fc6-323c88535d30 + - 0ba974a0-9048-48d3-87f6-4ef09899e9d2 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":3}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow - 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + 10.10.10.10/32"}, {"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}], "total_count":3}' headers: Content-Length: @@ -1551,9 +3655,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:23 GMT + - Tue, 07 Jan 2025 13:31:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,23 +3665,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6413ad88-aa37-4eae-9d8b-5d7a2eaf00c8 + - 4c6694ed-f0c7-49d1-84d6-37346f4be1dd status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls method: DELETE response: - body: '{"rules":[{"ip":"192.168.1.0/32", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"192.168.1.0/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: Content-Length: @@ -1587,9 +3691,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:23 GMT + - Tue, 07 Jan 2025 13:31:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,24 +3701,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 920475e8-5b37-4854-a7fd-fa1876a923cb + - 84d7a774-16fb-4a3f-8be7-c27d0912563f status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}], "total_count":2}' headers: @@ -1625,9 +3729,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:25 GMT + - Tue, 07 Jan 2025 13:31:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1635,63 +3739,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b79b628-5554-4b4f-a31a-2f62faf37231 + - 1f130561-2fae-4a3d-ad98-baf673b0cc71 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:25 GMT + - Tue, 07 Jan 2025 13:31:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,24 +3799,84 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 740bba2d-f57f-4f69-b410-eb50f3860bcd + - 71c2d5d5-7744-4441-b6e2-bd8d7af44018 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 + method: GET + response: + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1275" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:31:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3115d41b-8350-4440-bb2a-1fa524d68479 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", - "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":28955, + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}], "total_count":2}' headers: @@ -1727,9 +3887,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:26 GMT + - Tue, 07 Jan 2025 13:31:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1737,23 +3897,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3343803-2c66-4f90-93ec-3027f04dda13 + - 9a62af17-86e1-4228-8a47-6bf9b3c807b2 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"10.10.10.10/32", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls method: DELETE response: - body: '{"rules":[{"ip":"10.10.10.10/32", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"10.10.10.10/32", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 10.10.10.10/32"}]}' headers: Content-Length: @@ -1763,9 +3923,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:26 GMT + - Tue, 07 Jan 2025 13:31:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1773,21 +3933,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d0c3b83-5f93-4531-936f-7ac2c234fab1 + - ad0cfbc6-3cc8-4124-b5e8-420e5fa42fdb status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":28955, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":10411, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' headers: Content-Length: @@ -1797,9 +3957,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:26 GMT + - Tue, 07 Jan 2025 13:31:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1807,63 +3967,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b841a97-7664-4c67-86ac-1ed64cd65bba + - 4929876f-9da6-46df-9b15-6307355e8012 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":10411, "name":null, "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1582" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:27 GMT + - Tue, 07 Jan 2025 13:31:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,63 +4027,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7e67f10-4cb8-40ff-8050-cbf490c2e1f3 + - 046ffd10-713f-4639-a265-dbd9ac5f64c5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: GET response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1576" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:43 GMT + - Tue, 07 Jan 2025 13:32:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1935,63 +4087,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d6f91ba-9e9c-4787-9ac2-eee2f387f70d + - a5372829-0652-459c-8e89-0bde3b588b59 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b8f27e9a-4648-46f7-89aa-24d7042e99f0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/50c6b0f5-c1d2-4779-b0cf-a986085bc4c4 method: DELETE response: - body: '{"id":"b8f27e9a-4648-46f7-89aa-24d7042e99f0", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.74.238", - "port":28955, "name":null, "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"50c6b0f5-c1d2-4779-b0cf-a986085bc4c4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.703850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.619475Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.74.238", "port":28955, "name":null, - "id":"06fe5559-ce94-496a-812d-04a7855f8609", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":10411, "name":null, + "id":"f9f05694-8cac-4f21-9672-6b03a9857aef", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.703850Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.619475Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:43 GMT + - Tue, 07 Jan 2025 13:32:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1999,7 +4147,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a254ee72-9798-4f13-abd4-e6ef34190eea + - ca39689f-b3d3-4ba1-b35f-a3f3af6066db status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.golden b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.golden index 07f0b6f9c..6c6fe092e 100644 --- a/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.golden +++ b/internal/namespaces/rdb/v1/testdata/test-delete-acl-multiple-when-set.golden @@ -2,23 +2,23 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rule 1.2.3.4/32 successfully deleted. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 28955 tcp inbound allow Allow All -10.10.10.10/32 28955 tcp inbound allow Allow 10.10.10.10/32 -192.168.1.0/32 28955 tcp inbound allow Allow 192.168.1.0/32 +0.0.0.0/0 10411 tcp inbound allow Allow All +10.10.10.10/32 10411 tcp inbound allow Allow 10.10.10.10/32 +192.168.1.0/32 10411 tcp inbound allow Allow 192.168.1.0/32 βœ… ACL rule 192.168.1.0/32 successfully deleted. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 28955 tcp inbound allow Allow All -10.10.10.10/32 28955 tcp inbound allow Allow 10.10.10.10/32 +0.0.0.0/0 10411 tcp inbound allow Allow All +10.10.10.10/32 10411 tcp inbound allow Allow 10.10.10.10/32 βœ… ACL rule 10.10.10.10/32 successfully deleted. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 28955 tcp inbound allow Allow All +0.0.0.0/0 10411 tcp inbound allow Allow All 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { "Rules": [ { "ip": "0.0.0.0/0", - "port": 28955, + "port": 10411, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -26,7 +26,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "10.10.10.10/32", - "port": 28955, + "port": 10411, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -34,7 +34,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/32", - "port": 28955, + "port": 10411, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -50,7 +50,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 28955, + "port": 10411, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -58,7 +58,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "10.10.10.10/32", - "port": 28955, + "port": 10411, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -74,7 +74,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "Rules": [ { "ip": "0.0.0.0/0", - "port": 28955, + "port": 10411, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-delete-acl-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-delete-acl-simple.cassette.yaml index c0fbf8ce4..0d924d465 100644 --- a/internal/namespaces/rdb/v1/testdata/test-delete-acl-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-delete-acl-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:26:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd6995e4-c1b6-45eb-a5e7-d98080509507 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:26 GMT + - Tue, 07 Jan 2025 13:26:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cbdcb7e-5808-4599-9aff-4ee8a2cb48f5 + - 0d51b625-a21b-4fc1-95e6-16cc7c30f37a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:26 GMT + - Tue, 07 Jan 2025 13:26:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2264558c-81f2-4101-b4a2-89ff6afb2817 + - 73e4e244-a66b-4b4f-811f-0d53601ef449 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:41 GMT + - Tue, 07 Jan 2025 13:27:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0ed79f2-c714-4c87-8dc3-2e164f028399 + - 0f59f7fe-2645-4811-ad5b-f2d9f0c708eb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:20:57 GMT + - Tue, 07 Jan 2025 13:27:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce0f43f9-4952-4aec-9d32-ecc8a0c78929 + - ed6bb146-2ee7-4965-9c96-e3e1d35c7a13 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:12 GMT + - Tue, 07 Jan 2025 13:27:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba2e9946-0724-42d5-b936-78f80549a0dd + - 7c15ea5e-3d42-4315-b3ae-bf80ce114d08 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:27 GMT + - Tue, 07 Jan 2025 13:27:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d26400fd-9229-405f-b578-23760a64d4c1 + - cfffc2f9-bb5a-4646-874e-39644be57d1a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:21:45 GMT + - Tue, 07 Jan 2025 13:28:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b412a020-b3c6-4d1d-8739-53b14db2f15f + - 056ef55e-3640-47e8-8537-6554a8b18409 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:00 GMT + - Tue, 07 Jan 2025 13:28:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54d88e2d-4cce-4ed1-9175-75bfe8a1222a + - 078d2cc9-54e8-47ae-90db-fc167392e7c9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:15 GMT + - Tue, 07 Jan 2025 13:28:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58773264-8e72-45b0-8851-88fd4e57e803 + - 6259d99b-d563-4565-83ff-eaf48393e4b0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:31 GMT + - Tue, 07 Jan 2025 13:28:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f26e8126-bd59-4bbe-8d0b-03a1df97923d + - c5bfd20e-9b2f-4181-bad6-325710934044 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:22:46 GMT + - Tue, 07 Jan 2025 13:29:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - facbf88d-ba2d-4658-b84d-61f9c741b431 + - 409ae6fd-32e6-4f05-b47e-06fd5945b0cd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1084" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:01 GMT + - Tue, 07 Jan 2025 13:29:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,59 +2681,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 155c2141-c981-40ae-aedd-8ad0092a9da9 + - 7153782f-a572-4b35-a3d8-d78b48ac9e35 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff + method: GET + response: + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:29:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8df2679c-cdda-4699-8648-b2bf476a15d0 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.825326Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.825326Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:17 GMT + - Tue, 07 Jan 2025 13:29:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,59 +2783,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e12f96d-2688-4093-b5d6-fa5ff3a20cf1 + - ecdc6a2d-18a6-4c8e-8da1-ec354f9f1ce4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.825326Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-02-27T15:20:25.825326Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:26:55.551545Z", "region":"fr-par"}' headers: Content-Length: - - "1359" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:32 GMT + - Tue, 07 Jan 2025 13:30:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -767,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 257dde1f-b411-4e8b-ba0c-0cdd1daded1e + - 34948f12-9978-4a4c-b657-e734bc33bf91 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:30:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -831,21 +2897,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36a762b9-f03c-4dce-a48e-aa0b4eef0278 + - 98fbe00a-d6d1-4ec2-8b99-36dcbe89f6f2 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":13282, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23505, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":13282, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23505, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' headers: Content-Length: @@ -855,9 +2921,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:30:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -865,23 +2931,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdc75053-78ad-4794-a5d7-0cbb39b1f2dc + - b302095c-3696-40a9-b0f5-cb1a6e32049a status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":13282, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23505, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff/acls method: DELETE response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":13282, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":23505, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}]}' headers: Content-Length: @@ -891,9 +2957,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:47 GMT + - Tue, 07 Jan 2025 13:30:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,7 +2967,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb66e857-b205-4f2d-ba93-13415a90d1d6 + - d5aa10c3-f275-4599-a605-37376e234294 status: 200 OK code: 200 duration: "" @@ -910,8 +2976,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff/acls?page=1 method: GET response: body: '{"rules":[], "total_count":0}' @@ -923,9 +2989,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:30:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -933,63 +2999,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b3f1e14-58c9-4363-b3ce-8e91727e6698 + - 91f77e75-90b5-426c-8db4-37374cd6c9a5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":23505, "name":null, "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":23505, "name":null, "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' headers: Content-Length: - - "1584" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:23:48 GMT + - Tue, 07 Jan 2025 13:30:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,63 +3059,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ca4c115-7b39-4573-8fc9-e4bdf21aec6e + - 961038ad-e9d3-427f-a42b-096ab0471227 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: GET response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:03 GMT + - Tue, 07 Jan 2025 13:30:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1061,63 +3119,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f574c1c-917d-44d6-a451-9aa4b9faf34e + - 7d7c7e5f-1155-4a16-bed9-4f58d52a8ef9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/234bde59-69bc-4103-9c32-e9024aa7029b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/537f6497-aba4-4f20-862e-5fa206f8f4ff method: DELETE response: - body: '{"id":"234bde59-69bc-4103-9c32-e9024aa7029b", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.14"}, {"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.11"}, {"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.6"}], "endpoint":{"ip":"51.159.207.148", - "port":13282, "name":null, "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"537f6497-aba4-4f20-862e-5fa206f8f4ff", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-02-28T15:20:25.825326Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:26:55.551545Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.148", "port":13282, "name":null, - "id":"d543a7f3-01b5-4f78-82b3-8532968e6807", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23505, "name":null, + "id":"cced5be8-8f89-4862-b96e-3035dff3047f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-02-27T15:20:25.825326Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:26:55.551545Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 27 Feb 2024 15:24:04 GMT + - Tue, 07 Jan 2025 13:30:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1125,7 +3179,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c851910-1718-4e20-a3d0-7afc69b8884a + - 3cfd28e9-c884-42f7-a867-272a7d732838 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.cassette.yaml index 30beecf6f..0b2af063c 100644 --- a/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.cassette.yaml @@ -2,50 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances method: POST response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:33 GMT + - Tue, 07 Jan 2025 13:51:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8d1810-f9e6-494f-a9fc-39201ad503e5 + - 9637c1e8-dc8f-49ec-a570-de09cbe622d0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:33 GMT + - Tue, 07 Jan 2025 13:51:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4aae010-4936-4506-924a-2b855bbd193e + - d850fe69-a5f5-4725-a6bc-0206e325ff5e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:48 GMT + - Tue, 07 Jan 2025 13:51:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e65cf78c-0dd8-429d-a2bd-9733ce52fd5b + - a9a62c7a-df60-403c-a26e-d1b495e6438c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:04 GMT + - Tue, 07 Jan 2025 13:51:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 668862ac-e26f-4dc4-84a3-1c72a36d2a38 + - 7ccda6bb-3bff-4d73-b794-cb032ec51c13 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:19 GMT + - Tue, 07 Jan 2025 13:52:09 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08648ee4-807d-4d46-af85-390557c093f0 + - 40d6b509-11f7-4cd3-8416-70d3ea344519 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:34 GMT + - Tue, 07 Jan 2025 13:52:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58e722e4-99c8-411a-9b71-7ca9a13677de + - 095f06fd-b3b0-42ed-a30b-5cde2a624734 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:49 GMT + - Tue, 07 Jan 2025 13:52:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b7b878-84d0-467a-8951-820bf99776dc + - c171a298-63c1-44c1-b8e7-a01970fb61fd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:04 GMT + - Tue, 07 Jan 2025 13:52:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e382946-0fa9-432a-82f9-b35470cdb15d + - 26018598-65df-49c0-81e2-b23da28efb78 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:19 GMT + - Tue, 07 Jan 2025 13:53:10 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +431,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d89ea9d0-dd59-48fb-ac46-637e027c0ba2 + - 36514eb4-af55-4158-bde9-bdb26be8be1b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:35 GMT + - Tue, 07 Jan 2025 13:53:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +479,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 143a4027-9395-4c9f-832c-d759f40be9ea + - 08d2d7a9-d34a-4b8e-abec-cac7917c6617 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:50 GMT + - Tue, 07 Jan 2025 13:53:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +527,143 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c85d56c-8a52-41b1-8698-237a8eafcf6d + - 234fd59f-4e83-4fcd-8cd9-7f76a0856aa1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0630e42-520e-4b79-8326-2674d9962bd4 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 + method: GET + response: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:54:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5a3f2d8-416f-4c04-8857-220e78c3b23a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 + method: GET + response: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:05 GMT + - Tue, 07 Jan 2025 13:54:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,63 +671,161 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7aa134b-f8d1-4b2b-8dc9-dbf7c6e373cf + - d109d605-fcb5-4e2f-a69a-41c1631b2f49 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.130.105", - "port":3052, "name":null, "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 + method: GET + response: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:54:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d4b4b1b-afc4-4e7c-ad65-7a2d61ddd508 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 + method: GET + response: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.604762Z", "region":"nl-ams"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:54:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab93de59-2e03-4a7e-8dc6-5a7b29abe880 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.130.105", "port":3052, "name":null, - "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.604762Z", + "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: GET response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.130.105", - "port":3052, "name":null, "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.130.105", "port":3052, "name":null, - "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.604762Z", + "region":"nl-ams"}' headers: Content-Length: - - "1575" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:21 GMT + - Tue, 07 Jan 2025 13:55:11 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -711,37 +833,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 891eda5d-aa6b-4ef3-aa89-f2ea09f261bb + - bba7cdb7-7208-4d54-abcc-e29f162f7862 status: 200 OK code: 200 duration: "" - request: - body: '{"access_key":"SCWHJNSK2028RFV4SE6K", "secret_key":null, "description":"lmarabese - IAM API key", "created_at":"2023-02-07T12:50:30.653520Z", "updated_at":"2023-02-07T12:50:30.653520Z", - "expires_at":null, "default_project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "editable":true, "creation_ip":"51.159.46.153", "user_id":"77e7fa85-f305-4ea2-afea-09571a039336"}' + body: '{"access_key":"SCW7ZEW470JAKP4FHE8E", "secret_key":null, "description":"", + "created_at":"2025-01-07T13:16:21.002236Z", "updated_at":"2025-01-07T13:16:21.002236Z", + "expires_at":null, "default_project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.46.153", + "user_id":"136b6f64-5a92-45d2-9d91-1d45c0c69ff3"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW7ZEW470JAKP4FHE8E method: GET response: - body: '{"access_key":"SCWHJNSK2028RFV4SE6K", "secret_key":null, "description":"lmarabese - IAM API key", "created_at":"2023-02-07T12:50:30.653520Z", "updated_at":"2023-02-07T12:50:30.653520Z", - "expires_at":null, "default_project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "editable":true, "creation_ip":"51.159.46.153", "user_id":"77e7fa85-f305-4ea2-afea-09571a039336"}' + body: '{"access_key":"SCW7ZEW470JAKP4FHE8E", "secret_key":null, "description":"", + "created_at":"2025-01-07T13:16:21.002236Z", "updated_at":"2025-01-07T13:16:21.002236Z", + "expires_at":null, "default_project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.46.153", + "user_id":"136b6f64-5a92-45d2-9d91-1d45c0c69ff3"}' headers: Content-Length: - - "361" + - "375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:21 GMT + - Tue, 07 Jan 2025 13:55:11 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -749,27 +873,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 080b23a2-12a3-4fc4-a370-26a7dc08c7ad + - ba0ae789-c676-4b01-9fd1-99d483e49871 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups method: POST response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -779,9 +903,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:21 GMT + - Tue, 07 Jan 2025 13:55:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,25 +913,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d8fda47-58fc-4b30-9086-5577ba10d6c1 + - d4c08a63-1569-4f4f-a385-ccba33494b67 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418 method: GET response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -817,9 +941,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:21 GMT + - Tue, 07 Jan 2025 13:55:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -827,26 +951,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bdd7184-b797-4a76-9274-c80ba89fd45f + - 2a5880db-a802-4eb7-aa62-7b014af4dc7b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418 method: GET response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -857,9 +981,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -867,14 +991,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd5d4852-2dc7-45ee-96e2-b9108345b848 + - 8e02a0d2-a22e-4a64-b72f-db4068390c80 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} @@ -882,13 +1006,13 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f/export + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418/export method: POST response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -899,9 +1023,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -909,26 +1033,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1946a70a-1458-476d-81b2-e1e9031532ca + - 10d32f7a-98f0-4683-8694-154adb5e761f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418 method: GET response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -939,9 +1063,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -949,29 +1073,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e0a03bf-1e74-4494-9c95-e2a0ffb03caf + - cc4bf768-214a-43d7-8035-2bbb2cc20b69 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30", - "download_url_expires_at":"2023-11-10T19:20:38.016565Z", "same_region":false, + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d", + "download_url_expires_at":"2025-01-08T13:55:31.242402Z", "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418 method: GET response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30", - "download_url_expires_at":"2023-11-10T19:20:38.016565Z", "same_region":false, + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d", + "download_url_expires_at":"2025-01-08T13:55:31.242402Z", "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -981,9 +1105,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:52 GMT + - Tue, 07 Jan 2025 13:55:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -991,29 +1115,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44f414af-c53b-4430-be90-7701883713d9 + - 1eeff92c-073e-4334-8c2d-5bf6ea4ca17b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30", - "download_url_expires_at":"2023-11-10T19:20:38.016565Z", "same_region":false, + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d", + "download_url_expires_at":"2025-01-08T13:55:31.242402Z", "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418 method: GET response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30", - "download_url_expires_at":"2023-11-10T19:20:38.016565Z", "same_region":false, + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d", + "download_url_expires_at":"2025-01-08T13:55:31.242402Z", "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -1023,9 +1147,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:52 GMT + - Tue, 07 Jan 2025 13:55:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1033,29 +1157,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c1ef19e-a7d6-4b37-aa9b-6a8b2674808c + - 771edde0-bbcd-4f2a-b7c4-ec9a5955a124 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30", - "download_url_expires_at":"2023-11-10T19:20:38.016565Z", "same_region":false, + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d", + "download_url_expires_at":"2025-01-08T13:55:31.242402Z", "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/52f3cb38-566e-4986-b10c-e9cb7c0af28f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/3c480d0e-6d0a-4981-916b-d09483b0a418 method: GET response: - body: '{"id":"52f3cb38-566e-4986-b10c-e9cb7c0af28f", "instance_id":"fda5871c-5085-431a-88ca-d21146df8c6c", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:21.570674Z", "updated_at":"2023-11-09T19:20:23.163886Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30", - "download_url_expires_at":"2023-11-10T19:20:38.016565Z", "same_region":false, + body: '{"id":"3c480d0e-6d0a-4981-916b-d09483b0a418", "instance_id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:55:11.836338Z", "updated_at":"2025-01-07T13:55:14.688653Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d", + "download_url_expires_at":"2025-01-08T13:55:31.242402Z", "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -1065,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:52 GMT + - Tue, 07 Jan 2025 13:55:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1075,175 +1199,171 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f56e40f6-2f3a-424b-90cb-9fb13e2f19c6 + - 7376d89a-d64d-4e41-8a53-124e1d35b6b3 status: 200 OK code: 200 duration: "" - request: body: !!binary | - UEdETVABDgAECAEBAQAAAAAWAAAAABQAAAAAEwAAAAAJAAAAAAoAAAAAewAAAAAAAAAAAA - MAAAByZGIAIAAAADEyLjE2IChEZWJpYW4gMTIuMTYtMS5wZ2RnMTEwKzEpACAAAAAxMi4x - NiAoRGViaWFuIDEyLjE2LTEucGdkZzExMCsxKQAJAAAAAIoLAAAAAAAAAAABAAAAMAABAA - AAMAAIAAAARU5DT0RJTkcACAAAAEVOQ09ESU5HAAIAAAAAHgAAAFNFVCBjbGllbnRfZW5j - b2RpbmcgPSAnVVRGOCc7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZm - Fsc2UBAQAAAAMAAAAAAAAAAACLCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNURFNUUklO - R1MACgAAAFNURFNUUklOR1MAAgAAAAAoAAAAU0VUIHN0YW5kYXJkX2NvbmZvcm1pbmdfc3 - RyaW5ncyA9ICdvbic7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZmFs - c2UBAQAAAAMAAAAAAAAAAACMCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNFQVJDSFBBVE - gACgAAAFNFQVJDSFBBVEgAAgAAAAA4AAAAU0VMRUNUIHBnX2NhdGFsb2cuc2V0X2NvbmZp - Zygnc2VhcmNoX3BhdGgnLCAnJywgZmFsc2UpOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAA - AAAQEAAAAABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAAjQsAAAAAAAAAAAQAAAAxMjYyAAUA - AAAxNjM4NwADAAAAcmRiAAgAAABEQVRBQkFTRQACAAAAAHMAAABDUkVBVEUgREFUQUJBU0 - UgcmRiIFdJVEggVEVNUExBVEUgPSB0ZW1wbGF0ZTAgRU5DT0RJTkcgPSAnVVRGOCcgTENf - Q09MTEFURSA9ICdlbl9VUy51dGY4JyBMQ19DVFlQRSA9ICdlbl9VUy51dGY4JzsKABMAAA - BEUk9QIERBVEFCQVNFIHJkYjsKAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw - ZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAAAAAAAACOCwAAAAAAAAAAAQAAADAAAQAAAD - AADAAAAERBVEFCQVNFIHJkYgADAAAAQUNMAAEAAAAAWwAAAFJFVk9LRSBDT05ORUNULFRF - TVBPUkFSWSBPTiBEQVRBQkFTRSByZGIgRlJPTSBQVUJMSUM7CkdSQU5UIEFMTCBPTiBEQV - RBQkFTRSByZGIgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAA8AAABf - cmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAAQAAAAyOTU3AQEAAAADAAAAAAAAAAAAjwsAAA - AAAAAAAAEAAAAwAAEAAAAwAA0AAABTQ0hFTUEgcHVibGljAAMAAABBQ0wAAQAAAABPAAAA - UkVWT0tFIEFMTCBPTiBTQ0hFTUEgcHVibGljIEZST00gUFVCTElDOwpHUkFOVCBBTEwgT0 - 4gU0NIRU1BIHB1YmxpYyBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAA - DwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UAAQAAADMBAQAAAAMAAAAAAAAAAACUBg - AAAAAAAAAAAwAAADgyNgAFAAAAMTYzODkAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1Ig - U0VRVUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSV - ZJTEVHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JB - TlQgQUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaW - MBAQAAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAA - AAAAlQYAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkwACAAAABERUZBVUxUIFBSSVZJTEVHRV - MgRk9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVM - VCBQUklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibG - ljIEdSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAA - cHVibGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAw - AAAAAAAAAAAJMGAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OAAdAAAAREVGQVVMVCBQUklW - SUxFR0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRk - FVTFQgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1 - YmxpYyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAH - B1YmxpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMA - AAAAAAAAAA== + UEdETVABDgAECAEBAQAAAAAMAAAAADcAAAAADQAAAAAHAAAAAAAAAAAAfQAAAAAAAAAAAA + MAAAByZGIAHgAAADE1LjggKERlYmlhbiAxNS44LTEucGdkZzEyMCsxKQAgAAAAMTUuMTAg + KERlYmlhbiAxNS4xMC0xLnBnZGcxMjArMSkACQAAAAARDQAAAAAAAAAAAQAAADAAAQAAAD + AACAAAAEVOQ09ESU5HAAgAAABFTkNPRElORwACAAAAAB4AAABTRVQgY2xpZW50X2VuY29k + aW5nID0gJ1VURjgnOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbH + NlAQEAAAADAAAAAAAAAAAAEg0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTVERTVFJJTkdT + AAoAAABTVERTVFJJTkdTAAIAAAAAKAAAAFNFVCBzdGFuZGFyZF9jb25mb3JtaW5nX3N0cm + luZ3MgPSAnb24nOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbHNl + AQEAAAADAAAAAAAAAAAAEw0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTRUFSQ0hQQVRIAA + oAAABTRUFSQ0hQQVRIAAIAAAAAOAAAAFNFTEVDVCBwZ19jYXRhbG9nLnNldF9jb25maWco + J3NlYXJjaF9wYXRoJywgJycsIGZhbHNlKTsKAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAA + EBAAAAAAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABQNAAAAAAAAAAAEAAAAMTI2MgAFAAAA + MTYzODgAAwAAAHJkYgAIAAAAREFUQUJBU0UAAgAAAABuAAAAQ1JFQVRFIERBVEFCQVNFIH + JkYiBXSVRIIFRFTVBMQVRFID0gdGVtcGxhdGUwIEVOQ09ESU5HID0gJ1VURjgnIExPQ0FM + RV9QUk9WSURFUiA9IGxpYmMgTE9DQUxFID0gJ2VuX1VTLnV0ZjgnOwoAEwAAAERST1AgRE + FUQUJBU0UgcmRiOwoBAQAAAAEBAAAAAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWlu + AAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABUNAAAAAAAAAAABAAAAMAABAAAAMAAMAAAARE + FUQUJBU0UgcmRiAAMAAABBQ0wAAQAAAABbAAAAUkVWT0tFIENPTk5FQ1QsVEVNUE9SQVJZ + IE9OIERBVEFCQVNFIHJkYiBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIERBVEFCQVNFIH + JkYiBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw + ZXJhZG1pbgAFAAAAZmFsc2UABAAAADMzNDgBAQAAAAMAAAAAAAAAAAAWDQAAAAAAAAAAAQ + AAADAAAQAAADAADQAAAFNDSEVNQSBwdWJsaWMAAwAAAEFDTAABAAAAAFEAAABSRVZPS0Ug + VVNBR0UgT04gU0NIRU1BIHB1YmxpYyBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIFNDSE + VNQSBwdWJsaWMgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAABEAAABw + Z19kYXRhYmFzZV9vd25lcgAFAAAAZmFsc2UAAQAAADUBAQAAAAMAAAAAAAAAAADvBwAAAA + AAAAAAAwAAADgyNgAFAAAAMTYzOTAAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1IgU0VR + VUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSVZJTE + VHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JBTlQg + QUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaWMBAQ + AAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAA + 8AcAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkxACAAAABERUZBVUxUIFBSSVZJTEVHRVMgRk + 9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVMVCBQ + UklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibGljIE + dSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAAcHVi + bGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAwAAAA + AAAAAAAO4HAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OQAdAAAAREVGQVVMVCBQUklWSUxF + R0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRkFVTF + QgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1Ymxp + YyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAHB1Ym + xpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAA + AAAAAA== form: {} headers: {} - url: https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/fda5871c-5085-431a-88ca-d21146df8c6c/52f3cb38-566e-4986-b10c-e9cb7c0af28f.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192038Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=25f05d50a268096ff4e9cd4d0ae8a868371ed9f59638c0d1cedd2c8a91929e30 + url: https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/07265b03-7dd7-4115-9a3e-fe1eca5586b7/3c480d0e-6d0a-4981-916b-d09483b0a418.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135531Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71d69dc03a6e5ba9ea07167383c5c8706f28ce60e07e41cc86ba71ca0281534d method: GET response: body: !!binary | - UEdETVABDgAECAEBAQAAAAAWAAAAABQAAAAAEwAAAAAJAAAAAAoAAAAAewAAAAAAAAAAAA - MAAAByZGIAIAAAADEyLjE2IChEZWJpYW4gMTIuMTYtMS5wZ2RnMTEwKzEpACAAAAAxMi4x - NiAoRGViaWFuIDEyLjE2LTEucGdkZzExMCsxKQAJAAAAAIoLAAAAAAAAAAABAAAAMAABAA - AAMAAIAAAARU5DT0RJTkcACAAAAEVOQ09ESU5HAAIAAAAAHgAAAFNFVCBjbGllbnRfZW5j - b2RpbmcgPSAnVVRGOCc7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZm - Fsc2UBAQAAAAMAAAAAAAAAAACLCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNURFNUUklO - R1MACgAAAFNURFNUUklOR1MAAgAAAAAoAAAAU0VUIHN0YW5kYXJkX2NvbmZvcm1pbmdfc3 - RyaW5ncyA9ICdvbic7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZmFs - c2UBAQAAAAMAAAAAAAAAAACMCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNFQVJDSFBBVE - gACgAAAFNFQVJDSFBBVEgAAgAAAAA4AAAAU0VMRUNUIHBnX2NhdGFsb2cuc2V0X2NvbmZp - Zygnc2VhcmNoX3BhdGgnLCAnJywgZmFsc2UpOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAA - AAAQEAAAAABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAAjQsAAAAAAAAAAAQAAAAxMjYyAAUA - AAAxNjM4NwADAAAAcmRiAAgAAABEQVRBQkFTRQACAAAAAHMAAABDUkVBVEUgREFUQUJBU0 - UgcmRiIFdJVEggVEVNUExBVEUgPSB0ZW1wbGF0ZTAgRU5DT0RJTkcgPSAnVVRGOCcgTENf - Q09MTEFURSA9ICdlbl9VUy51dGY4JyBMQ19DVFlQRSA9ICdlbl9VUy51dGY4JzsKABMAAA - BEUk9QIERBVEFCQVNFIHJkYjsKAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw - ZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAAAAAAAACOCwAAAAAAAAAAAQAAADAAAQAAAD - AADAAAAERBVEFCQVNFIHJkYgADAAAAQUNMAAEAAAAAWwAAAFJFVk9LRSBDT05ORUNULFRF - TVBPUkFSWSBPTiBEQVRBQkFTRSByZGIgRlJPTSBQVUJMSUM7CkdSQU5UIEFMTCBPTiBEQV - RBQkFTRSByZGIgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAA8AAABf - cmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAAQAAAAyOTU3AQEAAAADAAAAAAAAAAAAjwsAAA - AAAAAAAAEAAAAwAAEAAAAwAA0AAABTQ0hFTUEgcHVibGljAAMAAABBQ0wAAQAAAABPAAAA - UkVWT0tFIEFMTCBPTiBTQ0hFTUEgcHVibGljIEZST00gUFVCTElDOwpHUkFOVCBBTEwgT0 - 4gU0NIRU1BIHB1YmxpYyBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAA - DwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UAAQAAADMBAQAAAAMAAAAAAAAAAACUBg - AAAAAAAAAAAwAAADgyNgAFAAAAMTYzODkAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1Ig - U0VRVUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSV - ZJTEVHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JB - TlQgQUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaW - MBAQAAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAA - AAAAlQYAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkwACAAAABERUZBVUxUIFBSSVZJTEVHRV - MgRk9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVM - VCBQUklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibG - ljIEdSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAA - cHVibGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAw - AAAAAAAAAAAJMGAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OAAdAAAAREVGQVVMVCBQUklW - SUxFR0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRk - FVTFQgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1 - YmxpYyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAH - B1YmxpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMA - AAAAAAAAAA== + UEdETVABDgAECAEBAQAAAAAMAAAAADcAAAAADQAAAAAHAAAAAAAAAAAAfQAAAAAAAAAAAA + MAAAByZGIAHgAAADE1LjggKERlYmlhbiAxNS44LTEucGdkZzEyMCsxKQAgAAAAMTUuMTAg + KERlYmlhbiAxNS4xMC0xLnBnZGcxMjArMSkACQAAAAARDQAAAAAAAAAAAQAAADAAAQAAAD + AACAAAAEVOQ09ESU5HAAgAAABFTkNPRElORwACAAAAAB4AAABTRVQgY2xpZW50X2VuY29k + aW5nID0gJ1VURjgnOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbH + NlAQEAAAADAAAAAAAAAAAAEg0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTVERTVFJJTkdT + AAoAAABTVERTVFJJTkdTAAIAAAAAKAAAAFNFVCBzdGFuZGFyZF9jb25mb3JtaW5nX3N0cm + luZ3MgPSAnb24nOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbHNl + AQEAAAADAAAAAAAAAAAAEw0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTRUFSQ0hQQVRIAA + oAAABTRUFSQ0hQQVRIAAIAAAAAOAAAAFNFTEVDVCBwZ19jYXRhbG9nLnNldF9jb25maWco + J3NlYXJjaF9wYXRoJywgJycsIGZhbHNlKTsKAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAA + EBAAAAAAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABQNAAAAAAAAAAAEAAAAMTI2MgAFAAAA + MTYzODgAAwAAAHJkYgAIAAAAREFUQUJBU0UAAgAAAABuAAAAQ1JFQVRFIERBVEFCQVNFIH + JkYiBXSVRIIFRFTVBMQVRFID0gdGVtcGxhdGUwIEVOQ09ESU5HID0gJ1VURjgnIExPQ0FM + RV9QUk9WSURFUiA9IGxpYmMgTE9DQUxFID0gJ2VuX1VTLnV0ZjgnOwoAEwAAAERST1AgRE + FUQUJBU0UgcmRiOwoBAQAAAAEBAAAAAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWlu + AAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABUNAAAAAAAAAAABAAAAMAABAAAAMAAMAAAARE + FUQUJBU0UgcmRiAAMAAABBQ0wAAQAAAABbAAAAUkVWT0tFIENPTk5FQ1QsVEVNUE9SQVJZ + IE9OIERBVEFCQVNFIHJkYiBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIERBVEFCQVNFIH + JkYiBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw + ZXJhZG1pbgAFAAAAZmFsc2UABAAAADMzNDgBAQAAAAMAAAAAAAAAAAAWDQAAAAAAAAAAAQ + AAADAAAQAAADAADQAAAFNDSEVNQSBwdWJsaWMAAwAAAEFDTAABAAAAAFEAAABSRVZPS0Ug + VVNBR0UgT04gU0NIRU1BIHB1YmxpYyBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIFNDSE + VNQSBwdWJsaWMgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAABEAAABw + Z19kYXRhYmFzZV9vd25lcgAFAAAAZmFsc2UAAQAAADUBAQAAAAMAAAAAAAAAAADvBwAAAA + AAAAAAAwAAADgyNgAFAAAAMTYzOTAAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1IgU0VR + VUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSVZJTE + VHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JBTlQg + QUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaWMBAQ + AAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAA + 8AcAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkxACAAAABERUZBVUxUIFBSSVZJTEVHRVMgRk + 9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVMVCBQ + UklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibGljIE + dSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAAcHVi + bGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAwAAAA + AAAAAAAO4HAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OQAdAAAAREVGQVVMVCBQUklWSUxF + R0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRkFVTF + QgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1Ymxp + YyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAHB1Ym + xpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAA + AAAAAA== headers: Accept-Ranges: - bytes Content-Length: - - "2107" + - "2104" Content-Type: - - application/octet-stream + - binary/octet-stream Date: - - Thu, 09 Nov 2023 19:20:52 GMT + - Tue, 07 Jan 2025 13:55:46 GMT Etag: - - '"b0998b6943320eaf8da7f51b309e8752"' + - '"bdb702daa2e5babc22d917a74949e52d"' Last-Modified: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:30 GMT + X-Amz-Expiration: + - expiry-date="Thu, 09 Jan 2025 00:00:00 GMT", rule-id="DeleteRule" X-Amz-Id-2: - - tx9cdef04ca03b4a19bfbde-00654d3114 + - txg19a665d5e8b8441ab0c0-00677d3262 X-Amz-Request-Id: - - tx9cdef04ca03b4a19bfbde-00654d3114 - X-Amz-Version-Id: - - "1699557637915113" + - txg19a665d5e8b8441ab0c0-00677d3262 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.130.105", - "port":3052, "name":null, "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.130.105", "port":3052, "name":null, - "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.604762Z", + "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/fda5871c-5085-431a-88ca-d21146df8c6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/07265b03-7dd7-4115-9a3e-fe1eca5586b7 method: DELETE response: - body: '{"id":"fda5871c-5085-431a-88ca-d21146df8c6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.130.105", - "port":3052, "name":null, "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"07265b03-7dd7-4115-9a3e-fe1eca5586b7", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.054092Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.604762Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.130.105", "port":3052, "name":null, - "id":"40fa3d5e-3408-4c59-b50b-42fe30fc08b9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.73", "port":29862, "name":null, + "id":"e0d2dfee-b4b3-46ad-8a1c-7679026fc9ff", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.054092Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.604762Z", + "region":"nl-ams"}' headers: Content-Length: - - "1578" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:53 GMT + - Tue, 07 Jan 2025 13:55:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,7 +1371,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c93c2317-0829-4c49-bdc9-4798e29b8ddd + - 851ae34e-0253-451d-9c53-fd60f75de430 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.golden b/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.golden index b9186f490..97765b6d1 100644 --- a/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-download-backup-simple.golden @@ -3,6 +3,6 @@ Backup downloaded to simple_dump successfully (2.1 kB written) 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "size": 2107, + "size": 2104, "file_name": "simple_dump" } diff --git a/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.cassette.yaml index a313357b0..d14e8af7d 100644 --- a/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.cassette.yaml @@ -2,50 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances method: POST response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:33 GMT + - Tue, 07 Jan 2025 13:51:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2344290-01c5-4e86-bc65-12ad468f8aac + - 790532b9-d030-44d9-ba14-c0b27ec39e79 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:33 GMT + - Tue, 07 Jan 2025 13:51:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27281e2b-6c4b-449b-827b-34b052c3a1d4 + - dfebdad8-a0d0-46b8-a4b4-053d1bfc2523 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:48 GMT + - Tue, 07 Jan 2025 13:51:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8ac18e8-2650-4e5c-b1c3-cfbd58576745 + - 6e61d0d1-ec04-4327-bf21-d4fe19231fc4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:04 GMT + - Tue, 07 Jan 2025 13:51:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec0b7c38-d1bc-4ee2-84fe-b2967a4503be + - 2dd35e50-b586-4025-a109-934beb244c0b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:19 GMT + - Tue, 07 Jan 2025 13:52:09 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfae1549-a683-42df-82de-5330817df43e + - f9b7c5ae-333e-4f04-b359-b6d5b6902aff status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:34 GMT + - Tue, 07 Jan 2025 13:52:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4884593-c8dc-4e02-9750-781ddcc6a0dd + - bb963600-f0e8-44af-b3a2-7e53cffaf905 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:18:49 GMT + - Tue, 07 Jan 2025 13:52:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6511c6e-99c7-439d-98db-ea17e28120f3 + - b672c829-1a7e-4cf7-af42-457a54f547ac status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:04 GMT + - Tue, 07 Jan 2025 13:52:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81bc63d0-919e-4600-844c-331dd5b1e2f6 + - 194a0ec1-e097-41e2-ab74-2cb4634b67af status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:19 GMT + - Tue, 07 Jan 2025 13:53:10 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +431,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e2d795e-8770-4f49-ab6d-10b68a721363 + - ba1f79ae-c115-4d8f-9468-046eddd4a243 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:35 GMT + - Tue, 07 Jan 2025 13:53:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +479,197 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac8d39ba-c7b6-4c17-b231-9bac2f7c9582 + - 68b21b45-1717-405b-90e5-c74e6cdc6fec status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:53:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac5470d5-4415-43cf-ba4f-59c20354a02d + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 + method: GET + response: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:53:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b15db68a-2c5a-4f72-addb-92ab8d7b6272 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 + method: GET + response: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:54:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 051ca33e-4581-4459-8e22-b40957884d03 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 + method: GET + response: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:19:50 GMT + - Tue, 07 Jan 2025 13:54:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,63 +677,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85444d4d-6c49-44ef-937b-f9ff172ed90b + - 559e3f82-9073-4b05-a022-fed2d7b37b1b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":18278, "name":null, "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":18278, "name":null, - "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 + method: GET + response: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:51:23.635530Z", "region":"nl-ams"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:54:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a689628-b43f-4159-a01c-25f2612d374c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.635530Z", + "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: GET response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":18278, "name":null, "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":18278, "name":null, - "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.635530Z", + "region":"nl-ams"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:05 GMT + - Tue, 07 Jan 2025 13:54:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -657,37 +791,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b75cae0-0a15-40da-98bc-07b37c14bb2e + - 829340b1-7cf4-463b-a5ab-d2427ce97148 status: 200 OK code: 200 duration: "" - request: - body: '{"access_key":"SCWHJNSK2028RFV4SE6K", "secret_key":null, "description":"lmarabese - IAM API key", "created_at":"2023-02-07T12:50:30.653520Z", "updated_at":"2023-02-07T12:50:30.653520Z", - "expires_at":null, "default_project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "editable":true, "creation_ip":"51.159.46.153", "user_id":"77e7fa85-f305-4ea2-afea-09571a039336"}' + body: '{"access_key":"SCW7ZEW470JAKP4FHE8E", "secret_key":null, "description":"", + "created_at":"2025-01-07T13:16:21.002236Z", "updated_at":"2025-01-07T13:16:21.002236Z", + "expires_at":null, "default_project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.46.153", + "user_id":"136b6f64-5a92-45d2-9d91-1d45c0c69ff3"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCWXXXXXXXXXXXXXXXXX + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW7ZEW470JAKP4FHE8E method: GET response: - body: '{"access_key":"SCWHJNSK2028RFV4SE6K", "secret_key":null, "description":"lmarabese - IAM API key", "created_at":"2023-02-07T12:50:30.653520Z", "updated_at":"2023-02-07T12:50:30.653520Z", - "expires_at":null, "default_project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "editable":true, "creation_ip":"51.159.46.153", "user_id":"77e7fa85-f305-4ea2-afea-09571a039336"}' + body: '{"access_key":"SCW7ZEW470JAKP4FHE8E", "secret_key":null, "description":"", + "created_at":"2025-01-07T13:16:21.002236Z", "updated_at":"2025-01-07T13:16:21.002236Z", + "expires_at":null, "default_project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.46.153", + "user_id":"136b6f64-5a92-45d2-9d91-1d45c0c69ff3"}' headers: Content-Length: - - "361" + - "375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:05 GMT + - Tue, 07 Jan 2025 13:54:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,27 +831,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfa95d2b-6e39-4a03-9ca5-8d3b862152f8 + - 9d0f3a1e-e9e3-4fab-a749-a4d346a6b953 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups method: POST response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -725,9 +861,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:06 GMT + - Tue, 07 Jan 2025 13:54:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -735,25 +871,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 195307f6-8b18-4a7c-8766-46188da60ec9 + - 74996a21-2c5d-42af-a307-3ec4cb9d0de9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/16a04901-6398-41c5-96eb-bb5970280781 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/e0b4e0ab-f927-413a-99f6-03683e22cdbd method: GET response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -763,9 +899,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:06 GMT + - Tue, 07 Jan 2025 13:54:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -773,26 +909,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 015b4cd1-4600-4145-9e22-0708035e6739 + - 3d4df1bf-3655-4617-865b-df074af5db89 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/16a04901-6398-41c5-96eb-bb5970280781 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/e0b4e0ab-f927-413a-99f6-03683e22cdbd method: GET response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -803,9 +939,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:21 GMT + - Tue, 07 Jan 2025 13:55:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -813,26 +949,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e87af150-9297-4dff-9019-a4ce643fbdce + - e49f6484-63fa-4197-b7c4-d61460968779 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/16a04901-6398-41c5-96eb-bb5970280781 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/e0b4e0ab-f927-413a-99f6-03683e22cdbd method: GET response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -843,9 +979,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:21 GMT + - Tue, 07 Jan 2025 13:55:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -853,14 +989,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ed104a1-32d9-4597-a094-9c8bffa9a2fd + - 7fd8199a-42a6-4c97-af04-7b4f03caee32 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} @@ -868,13 +1004,13 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/16a04901-6398-41c5-96eb-bb5970280781/export + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/e0b4e0ab-f927-413a-99f6-03683e22cdbd/export method: POST response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -885,9 +1021,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:22 GMT + - Tue, 07 Jan 2025 13:55:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -895,26 +1031,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c375a62-3adb-475f-8f23-83b72783db1b + - 22c21282-a2e1-41d1-9b41-e25f71efea65 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/16a04901-6398-41c5-96eb-bb5970280781 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/e0b4e0ab-f927-413a-99f6-03683e22cdbd method: GET response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"nl-ams"}' headers: @@ -925,9 +1061,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:22 GMT + - Tue, 07 Jan 2025 13:55:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -935,29 +1071,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef24be3f-fa84-4455-9292-ed1e65de4558 + - 36f71b34-8345-4169-becf-72ac9f582209 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/4d1a6496-3636-4c7b-964a-15d6c908a8f8/16a04901-6398-41c5-96eb-bb5970280781.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192022Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71491bd088a063b929cbfd832fc9d5ebc14d20afa4c928ed7879c1b062f73dd7", - "download_url_expires_at":"2023-11-10T19:20:22.782658Z", "same_region":false, + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9/e0b4e0ab-f927-413a-99f6-03683e22cdbd.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135516Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=b53214bc1eac7dd0c60853457074656a5df6eadc024dc63dfff292893497217d", + "download_url_expires_at":"2025-01-08T13:55:16.171624Z", "same_region":false, "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/16a04901-6398-41c5-96eb-bb5970280781 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/backups/e0b4e0ab-f927-413a-99f6-03683e22cdbd method: GET response: - body: '{"id":"16a04901-6398-41c5-96eb-bb5970280781", "instance_id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:20:06.323963Z", "updated_at":"2023-11-09T19:20:08.196480Z", - "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/4d1a6496-3636-4c7b-964a-15d6c908a8f8/16a04901-6398-41c5-96eb-bb5970280781.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192022Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71491bd088a063b929cbfd832fc9d5ebc14d20afa4c928ed7879c1b062f73dd7", - "download_url_expires_at":"2023-11-10T19:20:22.782658Z", "same_region":false, + body: '{"id":"e0b4e0ab-f927-413a-99f6-03683e22cdbd", "instance_id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:54:56.731776Z", "updated_at":"2025-01-07T13:54:59.101979Z", + "instance_name":"cli-test", "download_url":"https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9/e0b4e0ab-f927-413a-99f6-03683e22cdbd.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135516Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=b53214bc1eac7dd0c60853457074656a5df6eadc024dc63dfff292893497217d", + "download_url_expires_at":"2025-01-08T13:55:16.171624Z", "same_region":false, "region":"nl-ams"}' headers: Content-Length: @@ -967,9 +1103,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -977,175 +1113,171 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdd51dbb-8048-4c0f-a068-b785f2e58b79 + - c2f3d8fa-802d-437b-9198-560b4a7fb51e status: 200 OK code: 200 duration: "" - request: body: !!binary | - UEdETVABDgAECAEBAQAAAAAGAAAAABQAAAAAEwAAAAAJAAAAAAoAAAAAewAAAAAAAAAAAA - MAAAByZGIAIAAAADEyLjE2IChEZWJpYW4gMTIuMTYtMS5wZ2RnMTEwKzEpACAAAAAxMi4x - NiAoRGViaWFuIDEyLjE2LTEucGdkZzExMCsxKQAJAAAAAIoLAAAAAAAAAAABAAAAMAABAA - AAMAAIAAAARU5DT0RJTkcACAAAAEVOQ09ESU5HAAIAAAAAHgAAAFNFVCBjbGllbnRfZW5j - b2RpbmcgPSAnVVRGOCc7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZm - Fsc2UBAQAAAAMAAAAAAAAAAACLCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNURFNUUklO - R1MACgAAAFNURFNUUklOR1MAAgAAAAAoAAAAU0VUIHN0YW5kYXJkX2NvbmZvcm1pbmdfc3 - RyaW5ncyA9ICdvbic7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZmFs - c2UBAQAAAAMAAAAAAAAAAACMCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNFQVJDSFBBVE - gACgAAAFNFQVJDSFBBVEgAAgAAAAA4AAAAU0VMRUNUIHBnX2NhdGFsb2cuc2V0X2NvbmZp - Zygnc2VhcmNoX3BhdGgnLCAnJywgZmFsc2UpOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAA - AAAQEAAAAABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAAjQsAAAAAAAAAAAQAAAAxMjYyAAUA - AAAxNjM4NwADAAAAcmRiAAgAAABEQVRBQkFTRQACAAAAAHMAAABDUkVBVEUgREFUQUJBU0 - UgcmRiIFdJVEggVEVNUExBVEUgPSB0ZW1wbGF0ZTAgRU5DT0RJTkcgPSAnVVRGOCcgTENf - Q09MTEFURSA9ICdlbl9VUy51dGY4JyBMQ19DVFlQRSA9ICdlbl9VUy51dGY4JzsKABMAAA - BEUk9QIERBVEFCQVNFIHJkYjsKAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw - ZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAAAAAAAACOCwAAAAAAAAAAAQAAADAAAQAAAD - AADAAAAERBVEFCQVNFIHJkYgADAAAAQUNMAAEAAAAAWwAAAFJFVk9LRSBDT05ORUNULFRF - TVBPUkFSWSBPTiBEQVRBQkFTRSByZGIgRlJPTSBQVUJMSUM7CkdSQU5UIEFMTCBPTiBEQV - RBQkFTRSByZGIgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAA8AAABf - cmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAAQAAAAyOTU3AQEAAAADAAAAAAAAAAAAjwsAAA - AAAAAAAAEAAAAwAAEAAAAwAA0AAABTQ0hFTUEgcHVibGljAAMAAABBQ0wAAQAAAABPAAAA - UkVWT0tFIEFMTCBPTiBTQ0hFTUEgcHVibGljIEZST00gUFVCTElDOwpHUkFOVCBBTEwgT0 - 4gU0NIRU1BIHB1YmxpYyBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAA - DwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UAAQAAADMBAQAAAAMAAAAAAAAAAACUBg - AAAAAAAAAAAwAAADgyNgAFAAAAMTYzODkAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1Ig - U0VRVUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSV - ZJTEVHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JB - TlQgQUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaW - MBAQAAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAA - AAAAlQYAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkwACAAAABERUZBVUxUIFBSSVZJTEVHRV - MgRk9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVM - VCBQUklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibG - ljIEdSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAA - cHVibGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAw - AAAAAAAAAAAJMGAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OAAdAAAAREVGQVVMVCBQUklW - SUxFR0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRk - FVTFQgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1 - YmxpYyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAH - B1YmxpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMA - AAAAAAAAAA== + UEdETVABDgAECAEBAQAAAAA5AAAAADYAAAAADQAAAAAHAAAAAAAAAAAAfQAAAAAAAAAAAA + MAAAByZGIAHgAAADE1LjggKERlYmlhbiAxNS44LTEucGdkZzEyMCsxKQAgAAAAMTUuMTAg + KERlYmlhbiAxNS4xMC0xLnBnZGcxMjArMSkACQAAAAARDQAAAAAAAAAAAQAAADAAAQAAAD + AACAAAAEVOQ09ESU5HAAgAAABFTkNPRElORwACAAAAAB4AAABTRVQgY2xpZW50X2VuY29k + aW5nID0gJ1VURjgnOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbH + NlAQEAAAADAAAAAAAAAAAAEg0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTVERTVFJJTkdT + AAoAAABTVERTVFJJTkdTAAIAAAAAKAAAAFNFVCBzdGFuZGFyZF9jb25mb3JtaW5nX3N0cm + luZ3MgPSAnb24nOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbHNl + AQEAAAADAAAAAAAAAAAAEw0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTRUFSQ0hQQVRIAA + oAAABTRUFSQ0hQQVRIAAIAAAAAOAAAAFNFTEVDVCBwZ19jYXRhbG9nLnNldF9jb25maWco + J3NlYXJjaF9wYXRoJywgJycsIGZhbHNlKTsKAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAA + EBAAAAAAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABQNAAAAAAAAAAAEAAAAMTI2MgAFAAAA + MTYzODgAAwAAAHJkYgAIAAAAREFUQUJBU0UAAgAAAABuAAAAQ1JFQVRFIERBVEFCQVNFIH + JkYiBXSVRIIFRFTVBMQVRFID0gdGVtcGxhdGUwIEVOQ09ESU5HID0gJ1VURjgnIExPQ0FM + RV9QUk9WSURFUiA9IGxpYmMgTE9DQUxFID0gJ2VuX1VTLnV0ZjgnOwoAEwAAAERST1AgRE + FUQUJBU0UgcmRiOwoBAQAAAAEBAAAAAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWlu + AAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABUNAAAAAAAAAAABAAAAMAABAAAAMAAMAAAARE + FUQUJBU0UgcmRiAAMAAABBQ0wAAQAAAABbAAAAUkVWT0tFIENPTk5FQ1QsVEVNUE9SQVJZ + IE9OIERBVEFCQVNFIHJkYiBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIERBVEFCQVNFIH + JkYiBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw + ZXJhZG1pbgAFAAAAZmFsc2UABAAAADMzNDgBAQAAAAMAAAAAAAAAAAAWDQAAAAAAAAAAAQ + AAADAAAQAAADAADQAAAFNDSEVNQSBwdWJsaWMAAwAAAEFDTAABAAAAAFEAAABSRVZPS0Ug + VVNBR0UgT04gU0NIRU1BIHB1YmxpYyBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIFNDSE + VNQSBwdWJsaWMgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAABEAAABw + Z19kYXRhYmFzZV9vd25lcgAFAAAAZmFsc2UAAQAAADUBAQAAAAMAAAAAAAAAAADvBwAAAA + AAAAAAAwAAADgyNgAFAAAAMTYzOTAAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1IgU0VR + VUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSVZJTE + VHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JBTlQg + QUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaWMBAQ + AAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAA + 8AcAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkxACAAAABERUZBVUxUIFBSSVZJTEVHRVMgRk + 9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVMVCBQ + UklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibGljIE + dSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAAcHVi + bGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAwAAAA + AAAAAAAO4HAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OQAdAAAAREVGQVVMVCBQUklWSUxF + R0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRkFVTF + QgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1Ymxp + YyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAHB1Ym + xpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAA + AAAAAA== form: {} headers: {} - url: https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/4d1a6496-3636-4c7b-964a-15d6c908a8f8/16a04901-6398-41c5-96eb-bb5970280781.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20231109T192022Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=71491bd088a063b929cbfd832fc9d5ebc14d20afa4c928ed7879c1b062f73dd7 + url: https://s3.fr-par.scw.cloud/9f261887-ece6-41b4-8f7a-167ab9c4349f/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9/e0b4e0ab-f927-413a-99f6-03683e22cdbd.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Ffr-par%2Fs3%2Faws4_request&X-Amz-Date=20250107T135516Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=b53214bc1eac7dd0c60853457074656a5df6eadc024dc63dfff292893497217d method: GET response: body: !!binary | - UEdETVABDgAECAEBAQAAAAAGAAAAABQAAAAAEwAAAAAJAAAAAAoAAAAAewAAAAAAAAAAAA - MAAAByZGIAIAAAADEyLjE2IChEZWJpYW4gMTIuMTYtMS5wZ2RnMTEwKzEpACAAAAAxMi4x - NiAoRGViaWFuIDEyLjE2LTEucGdkZzExMCsxKQAJAAAAAIoLAAAAAAAAAAABAAAAMAABAA - AAMAAIAAAARU5DT0RJTkcACAAAAEVOQ09ESU5HAAIAAAAAHgAAAFNFVCBjbGllbnRfZW5j - b2RpbmcgPSAnVVRGOCc7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZm - Fsc2UBAQAAAAMAAAAAAAAAAACLCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNURFNUUklO - R1MACgAAAFNURFNUUklOR1MAAgAAAAAoAAAAU0VUIHN0YW5kYXJkX2NvbmZvcm1pbmdfc3 - RyaW5ncyA9ICdvbic7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAAAFAAAAZmFs - c2UBAQAAAAMAAAAAAAAAAACMCwAAAAAAAAAAAQAAADAAAQAAADAACgAAAFNFQVJDSFBBVE - gACgAAAFNFQVJDSFBBVEgAAgAAAAA4AAAAU0VMRUNUIHBnX2NhdGFsb2cuc2V0X2NvbmZp - Zygnc2VhcmNoX3BhdGgnLCAnJywgZmFsc2UpOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAA - AAAQEAAAAABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAAjQsAAAAAAAAAAAQAAAAxMjYyAAUA - AAAxNjM4NwADAAAAcmRiAAgAAABEQVRBQkFTRQACAAAAAHMAAABDUkVBVEUgREFUQUJBU0 - UgcmRiIFdJVEggVEVNUExBVEUgPSB0ZW1wbGF0ZTAgRU5DT0RJTkcgPSAnVVRGOCcgTENf - Q09MTEFURSA9ICdlbl9VUy51dGY4JyBMQ19DVFlQRSA9ICdlbl9VUy51dGY4JzsKABMAAA - BEUk9QIERBVEFCQVNFIHJkYjsKAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw - ZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAAAAAAAACOCwAAAAAAAAAAAQAAADAAAQAAAD - AADAAAAERBVEFCQVNFIHJkYgADAAAAQUNMAAEAAAAAWwAAAFJFVk9LRSBDT05ORUNULFRF - TVBPUkFSWSBPTiBEQVRBQkFTRSByZGIgRlJPTSBQVUJMSUM7CkdSQU5UIEFMTCBPTiBEQV - RBQkFTRSByZGIgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAA8AAABf - cmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAAQAAAAyOTU3AQEAAAADAAAAAAAAAAAAjwsAAA - AAAAAAAAEAAAAwAAEAAAAwAA0AAABTQ0hFTUEgcHVibGljAAMAAABBQ0wAAQAAAABPAAAA - UkVWT0tFIEFMTCBPTiBTQ0hFTUEgcHVibGljIEZST00gUFVCTElDOwpHUkFOVCBBTEwgT0 - 4gU0NIRU1BIHB1YmxpYyBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAA - DwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UAAQAAADMBAQAAAAMAAAAAAAAAAACUBg - AAAAAAAAAAAwAAADgyNgAFAAAAMTYzODkAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1Ig - U0VRVUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSV - ZJTEVHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JB - TlQgQUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaW - MBAQAAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAA - AAAAlQYAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkwACAAAABERUZBVUxUIFBSSVZJTEVHRV - MgRk9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVM - VCBQUklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibG - ljIEdSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAA - cHVibGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAw - AAAAAAAAAAAJMGAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OAAdAAAAREVGQVVMVCBQUklW - SUxFR0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRk - FVTFQgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1 - YmxpYyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAH - B1YmxpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMA - AAAAAAAAAA== + UEdETVABDgAECAEBAQAAAAA5AAAAADYAAAAADQAAAAAHAAAAAAAAAAAAfQAAAAAAAAAAAA + MAAAByZGIAHgAAADE1LjggKERlYmlhbiAxNS44LTEucGdkZzEyMCsxKQAgAAAAMTUuMTAg + KERlYmlhbiAxNS4xMC0xLnBnZGcxMjArMSkACQAAAAARDQAAAAAAAAAAAQAAADAAAQAAAD + AACAAAAEVOQ09ESU5HAAgAAABFTkNPRElORwACAAAAAB4AAABTRVQgY2xpZW50X2VuY29k + aW5nID0gJ1VURjgnOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbH + NlAQEAAAADAAAAAAAAAAAAEg0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTVERTVFJJTkdT + AAoAAABTVERTVFJJTkdTAAIAAAAAKAAAAFNFVCBzdGFuZGFyZF9jb25mb3JtaW5nX3N0cm + luZ3MgPSAnb24nOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAABQAAAGZhbHNl + AQEAAAADAAAAAAAAAAAAEw0AAAAAAAAAAAEAAAAwAAEAAAAwAAoAAABTRUFSQ0hQQVRIAA + oAAABTRUFSQ0hQQVRIAAIAAAAAOAAAAFNFTEVDVCBwZ19jYXRhbG9nLnNldF9jb25maWco + J3NlYXJjaF9wYXRoJywgJycsIGZhbHNlKTsKAQEAAAABAQAAAAEBAAAAAQEAAAABAQAAAA + EBAAAAAAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABQNAAAAAAAAAAAEAAAAMTI2MgAFAAAA + MTYzODgAAwAAAHJkYgAIAAAAREFUQUJBU0UAAgAAAABuAAAAQ1JFQVRFIERBVEFCQVNFIH + JkYiBXSVRIIFRFTVBMQVRFID0gdGVtcGxhdGUwIEVOQ09ESU5HID0gJ1VURjgnIExPQ0FM + RV9QUk9WSURFUiA9IGxpYmMgTE9DQUxFID0gJ2VuX1VTLnV0ZjgnOwoAEwAAAERST1AgRE + FUQUJBU0UgcmRiOwoBAQAAAAEBAAAAAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWlu + AAUAAABmYWxzZQEBAAAAAwAAAAAAAAAAABUNAAAAAAAAAAABAAAAMAABAAAAMAAMAAAARE + FUQUJBU0UgcmRiAAMAAABBQ0wAAQAAAABbAAAAUkVWT0tFIENPTk5FQ1QsVEVNUE9SQVJZ + IE9OIERBVEFCQVNFIHJkYiBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIERBVEFCQVNFIH + JkYiBUTyBmb29iYXI7CgEBAAAAAQEAAAABAQAAAAEBAAAAAQEAAAAADwAAAF9yZGJfc3Vw + ZXJhZG1pbgAFAAAAZmFsc2UABAAAADMzNDgBAQAAAAMAAAAAAAAAAAAWDQAAAAAAAAAAAQ + AAADAAAQAAADAADQAAAFNDSEVNQSBwdWJsaWMAAwAAAEFDTAABAAAAAFEAAABSRVZPS0Ug + VVNBR0UgT04gU0NIRU1BIHB1YmxpYyBGUk9NIFBVQkxJQzsKR1JBTlQgQUxMIE9OIFNDSE + VNQSBwdWJsaWMgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAQEAAAABAQAAAAEBAAAAABEAAABw + Z19kYXRhYmFzZV9vd25lcgAFAAAAZmFsc2UAAQAAADUBAQAAAAMAAAAAAAAAAADvBwAAAA + AAAAAAAwAAADgyNgAFAAAAMTYzOTAAIAAAAERFRkFVTFQgUFJJVklMRUdFUyBGT1IgU0VR + VUVOQ0VTAAsAAABERUZBVUxUIEFDTAAEAAAAAGYAAABBTFRFUiBERUZBVUxUIFBSSVZJTE + VHRVMgRk9SIFJPTEUgX3JkYl9zdXBlcmFkbWluIElOIFNDSEVNQSBwdWJsaWMgR1JBTlQg + QUxMIE9OIFNFUVVFTkNFUyAgVE8gZm9vYmFyOwoBAQAAAAEBAAAAAAYAAABwdWJsaWMBAQ + AAAAEBAAAAAA8AAABfcmRiX3N1cGVyYWRtaW4ABQAAAGZhbHNlAQEAAAADAAAAAAAAAAAA + 8AcAAAAAAAAAAAMAAAA4MjYABQAAADE2MzkxACAAAABERUZBVUxUIFBSSVZJTEVHRVMgRk + 9SIEZVTkNUSU9OUwALAAAAREVGQVVMVCBBQ0wABAAAAABmAAAAQUxURVIgREVGQVVMVCBQ + UklWSUxFR0VTIEZPUiBST0xFIF9yZGJfc3VwZXJhZG1pbiBJTiBTQ0hFTUEgcHVibGljIE + dSQU5UIEFMTCBPTiBGVU5DVElPTlMgIFRPIGZvb2JhcjsKAQEAAAABAQAAAAAGAAAAcHVi + bGljAQEAAAABAQAAAAAPAAAAX3JkYl9zdXBlcmFkbWluAAUAAABmYWxzZQEBAAAAAwAAAA + AAAAAAAO4HAAAAAAAAAAADAAAAODI2AAUAAAAxNjM4OQAdAAAAREVGQVVMVCBQUklWSUxF + R0VTIEZPUiBUQUJMRVMACwAAAERFRkFVTFQgQUNMAAQAAAAAYwAAAEFMVEVSIERFRkFVTF + QgUFJJVklMRUdFUyBGT1IgUk9MRSBfcmRiX3N1cGVyYWRtaW4gSU4gU0NIRU1BIHB1Ymxp + YyBHUkFOVCBBTEwgT04gVEFCTEVTICBUTyBmb29iYXI7CgEBAAAAAQEAAAAABgAAAHB1Ym + xpYwEBAAAAAQEAAAAADwAAAF9yZGJfc3VwZXJhZG1pbgAFAAAAZmFsc2UBAQAAAAMAAAAA + AAAAAA== headers: Accept-Ranges: - bytes Content-Length: - - "2107" + - "2104" Content-Type: - - application/octet-stream + - binary/octet-stream Date: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:30 GMT Etag: - - '"ca8f59cbbb715d16e5d2ed1fb84b1c1d"' + - '"d8d44aad993258a6a35ff297098015ba"' Last-Modified: - - Thu, 09 Nov 2023 19:20:22 GMT + - Tue, 07 Jan 2025 13:55:16 GMT + X-Amz-Expiration: + - expiry-date="Thu, 09 Jan 2025 00:00:00 GMT", rule-id="DeleteRule" X-Amz-Id-2: - - txd91f0377b39d49f3bde83-00654d3105 + - txg0c31bfc62db1482da793-00677d3252 X-Amz-Request-Id: - - txd91f0377b39d49f3bde83-00654d3105 - X-Amz-Version-Id: - - "1699557622715860" + - txg0c31bfc62db1482da793-00677d3252 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":18278, "name":null, "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":18278, "name":null, - "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.635530Z", + "region":"nl-ams"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/4d1a6496-3636-4c7b-964a-15d6c908a8f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/02fb8dcc-3d83-43dd-bda7-8d0675c89aa9 method: DELETE response: - body: '{"id":"4d1a6496-3636-4c7b-964a-15d6c908a8f8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"21b832e0-61bc-4f8a-a3a0-9ab8d0b72e36", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"7f2e51db-92c0-4ba9-a42d-b933d0979529", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"9bf6861b-29ce-45ac-8daf-2eb1e1b582f1", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.129.212", - "port":18278, "name":null, "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"02fb8dcc-3d83-43dd-bda7-8d0675c89aa9", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:17:33.053769Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:51:23.635530Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.129.212", "port":18278, "name":null, - "id":"edddac1a-94e7-4c6a-8c56-7a77e9218c1f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.158.129.189", "port":26238, "name":null, + "id":"37278a66-9c93-4d38-be60-3b1eeed53606", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:17:33.053769Z", "region":"nl-ams"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:51:23.635530Z", + "region":"nl-ams"}' headers: Content-Length: - - "1580" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:37 GMT + - Tue, 07 Jan 2025 13:55:31 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1153,7 +1285,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 863c431d-c54b-47fe-9387-7e834cadc551 + - 27fe9a4a-7ce8-4619-8efa-fa48a0f9e264 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.golden b/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.golden index 6bbcfc6ab..d955bebbf 100644 --- a/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.golden +++ b/internal/namespaces/rdb/v1/testdata/test-download-backup-with-no-previous-export-backup.golden @@ -3,6 +3,6 @@ Backup downloaded to no_previous_export_dump successfully (2.1 kB written) 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "size": 2107, + "size": 2104, "file_name": "no_previous_export_dump" } diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.cassette.yaml index 3e5bfdd82..04ee530d4 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"f965b737-8193-4868-8db8-67f78d7c9190", "name":"pn-vibrant-colden", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T15:47:35.011690Z", - "updated_at":"2024-11-19T15:47:35.011690Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"40679b94-548e-4218-aedc-34bf36f64567", "created_at":"2024-11-19T15:47:35.011690Z", - "updated_at":"2024-11-19T15:47:35.011690Z", "subnet":"172.16.12.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"b2366b69-fe75-4288-bf45-3cd55fb1512c", "created_at":"2024-11-19T15:47:35.011690Z", - "updated_at":"2024-11-19T15:47:35.011690Z", "subnet":"fd49:821a:a311:98b9::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"ca76b144-f58c-4312-9345-e6e5619177f5", "name":"pn-xenodochial-wu", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:00:24.263593Z", + "updated_at":"2025-01-07T14:00:24.263593Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"9d151252-e231-4f9f-8f23-b246318bd06d", "created_at":"2025-01-07T14:00:24.263593Z", + "updated_at":"2025-01-07T14:00:24.263593Z", "subnet":"172.16.0.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"4cabf326-ea06-4e53-bf6b-6c2f9bffde68", "created_at":"2025-01-07T14:00:24.263593Z", + "updated_at":"2025-01-07T14:00:24.263593Z", "subnet":"fdcd:e4f1:8712:ddc3::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"f965b737-8193-4868-8db8-67f78d7c9190", "name":"pn-vibrant-colden", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T15:47:35.011690Z", - "updated_at":"2024-11-19T15:47:35.011690Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"40679b94-548e-4218-aedc-34bf36f64567", "created_at":"2024-11-19T15:47:35.011690Z", - "updated_at":"2024-11-19T15:47:35.011690Z", "subnet":"172.16.12.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"b2366b69-fe75-4288-bf45-3cd55fb1512c", "created_at":"2024-11-19T15:47:35.011690Z", - "updated_at":"2024-11-19T15:47:35.011690Z", "subnet":"fd49:821a:a311:98b9::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"ca76b144-f58c-4312-9345-e6e5619177f5", "name":"pn-xenodochial-wu", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:00:24.263593Z", + "updated_at":"2025-01-07T14:00:24.263593Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"9d151252-e231-4f9f-8f23-b246318bd06d", "created_at":"2025-01-07T14:00:24.263593Z", + "updated_at":"2025-01-07T14:00:24.263593Z", "subnet":"172.16.0.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"4cabf326-ea06-4e53-bf6b-6c2f9bffde68", "created_at":"2025-01-07T14:00:24.263593Z", + "updated_at":"2025-01-07T14:00:24.263593Z", "subnet":"fdcd:e4f1:8712:ddc3::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1044" + - "1043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:35 GMT + - Tue, 07 Jan 2025 14:00:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,49 +51,2105 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95d83b5b-9d6d-42bf-8f7b-a79c6e070af8 + - 2c8dfb82-b802-4889-8a16-a7b9d9a4722f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' headers: Content-Length: - - "783" + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:36 GMT + - Tue, 07 Jan 2025 14:00:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,84 +2157,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dd69e8e-a970-42c0-b858-c73cd8ab8bbd + - eecc99b2-f948-409d-8aea-d6240233d3ba status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 - method: GET - response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' - headers: - Content-Length: - - "783" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 19 Nov 2024 15:47:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3719ee2c-5dcf-467c-9ec8-3f0439371d66 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' - form: {} - headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 - method: GET + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -187,9 +2197,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:51 GMT + - Tue, 07 Jan 2025 14:00:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,36 +2207,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48ebcbef-9784-456a-9cda-56b3aa67568c + - 426eec49-1a3d-4987-a7b1-1c0ba0d9c220 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -235,9 +2245,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:06 GMT + - Tue, 07 Jan 2025 14:00:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -245,36 +2255,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79cf3f3a-2b7e-4da5-aee5-dfb8a140869e + - 3b2e428f-eebe-4d97-aafe-f4e623082852 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -283,9 +2293,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:21 GMT + - Tue, 07 Jan 2025 14:00:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,36 +2303,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3e6431f-e62f-41d0-a6c6-f1c27269a4fe + - 3bf32ec6-af56-4fa8-9980-f8e5476f8450 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -331,9 +2341,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:36 GMT + - Tue, 07 Jan 2025 14:00:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -341,36 +2351,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcc9924e-9e3f-44d3-84bd-36401e08f08a + - 62815434-365c-470d-9120-86269f4c87fa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -379,9 +2389,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:51 GMT + - Tue, 07 Jan 2025 14:01:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -389,36 +2399,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a74b1efe-f15d-42ca-900e-f6bcf257b7e3 + - 4d500066-8bdc-4126-baaa-e8d7509ecf30 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -427,9 +2437,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:06 GMT + - Tue, 07 Jan 2025 14:01:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -437,36 +2447,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4af9f2de-fa08-4921-8d8a-4906f9f6f0fb + - 61e1dbfe-c339-4258-8dc4-d9c911afced4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -475,9 +2485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:22 GMT + - Tue, 07 Jan 2025 14:01:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,36 +2495,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07211a55-7212-4d9d-9006-d25188823c5c + - f06f216e-8bc2-4b51-8414-fb53eec60881 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -523,9 +2533,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:37 GMT + - Tue, 07 Jan 2025 14:01:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -533,36 +2543,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - badf4048-2a2e-40f3-9c34-415dbd984bb7 + - 2f535d34-2803-4865-b496-f54a8ae7d0ab status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -571,9 +2581,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:52 GMT + - Tue, 07 Jan 2025 14:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -581,36 +2591,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3ea561d-f3ff-4a21-af51-5bb47c6bdaa0 + - d8b9bb45-2fb6-43c6-b758-b44ef863367d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -619,9 +2629,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:07 GMT + - Tue, 07 Jan 2025 14:02:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -629,36 +2639,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89ea46e7-573b-4c35-b270-f098967af035 + - 594cd962-5985-4498-b96c-5e193ccbafdf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -667,9 +2677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:22 GMT + - Tue, 07 Jan 2025 14:02:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -677,42 +2687,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502b34f1-e32e-448c-921e-d0f2b09b6d0b + - a1851e8e-c7ff-44e6-b96d-aecc91bdbc1f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "1058" @@ -721,9 +2731,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:37 GMT + - Tue, 07 Jan 2025 14:02:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -731,42 +2741,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37c1d30a-5666-4015-b795-4d935a4dcb92 + - f86550f1-7612-4b42-b765-8aed5cdd950d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.852980Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - "1058" @@ -775,9 +2785,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:52 GMT + - Tue, 07 Jan 2025 14:03:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,59 +2795,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01ba93c5-df9c-4967-9ab7-6a12368cdaca + - b9bab9e5-8050-4163-8746-3ba8b5f0021c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: - - "1275" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:07 GMT + - Tue, 07 Jan 2025 14:03:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -845,37 +2855,37 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6047fe5b-c47b-4347-a152-f9ed49ac86ad + - 0c7be75d-09b3-4696-9b85-b9d40e4fdeec status: 200 OK code: 200 duration: "" - request: - body: '{"ip":"172.16.12.2", "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", - "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}' + body: '{"ip":"172.16.0.2", "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", + "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb/endpoints method: POST response: - body: '{"ip":"172.16.12.2", "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", - "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}' + body: '{"ip":"172.16.0.2", "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", + "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}' headers: Content-Length: - - "250" + - "248" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:09 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,51 +2893,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5e2ea2b-ad1f-40e2-9c58-712c1606efaf + - 1d5c919f-29b3-4f87-86e8-15e3faa31a2e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", - "port":10181, "name":null, "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", + "port":23524, "name":null, "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", - "port":10181, "name":null, "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", + "port":23524, "name":null, "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: @@ -937,9 +2947,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:09 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -947,115 +2957,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b3f6a6f-1755-4b87-b665-28fffffa0529 + - 65adc03b-5abc-46e4-ad25-365e873d5c9d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", - "port":10181, "name":null, "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 - method: GET - response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", - "port":10181, "name":null, "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:51:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 29a8a481-b728-46d8-a31e-b415db29ac43 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: @@ -1065,9 +3011,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:39 GMT + - Tue, 07 Jan 2025 14:03:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1075,51 +3021,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 528516fe-0a4b-4f12-a7f3-2849847c3cbc + - f14beb7b-859c-426a-972e-cafa91357c3e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: @@ -1129,9 +3075,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:39 GMT + - Tue, 07 Jan 2025 14:03:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1139,43 +3085,43 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd141845-f4cc-4826-a8de-eebc30964e92 + - 1f57eb4a-a858-43ab-aa5a-a0d48a239915 status: 200 OK code: 200 duration: "" - request: - body: '{"total_count":1, "ips":[{"id":"90ce54ca-c1f3-4646-9911-a412a48beb7f", - "address":"172.16.12.2/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "is_ipv6":false, "created_at":"2024-11-19T15:51:09.111451Z", "updated_at":"2024-11-19T15:51:10.110014Z", - "source":{"subnet_id":"40679b94-548e-4218-aedc-34bf36f64567"}, "resource":{"type":"rdb_instance", - "id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "mac_address":"02:00:00:1A:85:DF", + body: '{"total_count":1, "ips":[{"id":"33f518d0-05df-46b6-89af-9739cdd9c48e", + "address":"172.16.0.2/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "is_ipv6":false, "created_at":"2025-01-07T14:03:28.116504Z", "updated_at":"2025-01-07T14:03:28.813193Z", + "source":{"subnet_id":"9d151252-e231-4f9f-8f23-b246318bd06d"}, "resource":{"type":"rdb_instance", + "id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "mac_address":"02:00:00:19:43:0B", "name":"cli-test"}, "tags":["managed", "scwdbaas"], "reverses":[], "region":"fr-par", "zone":null}]}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=3e88fefa-1bf9-45a1-bbb1-f962d1a69126&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=f5d242a1-77b5-4a4d-867e-166d820328bb&resource_type=rdb_instance method: GET response: - body: '{"total_count":1, "ips":[{"id":"90ce54ca-c1f3-4646-9911-a412a48beb7f", - "address":"172.16.12.2/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "is_ipv6":false, "created_at":"2024-11-19T15:51:09.111451Z", "updated_at":"2024-11-19T15:51:10.110014Z", - "source":{"subnet_id":"40679b94-548e-4218-aedc-34bf36f64567"}, "resource":{"type":"rdb_instance", - "id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "mac_address":"02:00:00:1A:85:DF", + body: '{"total_count":1, "ips":[{"id":"33f518d0-05df-46b6-89af-9739cdd9c48e", + "address":"172.16.0.2/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "is_ipv6":false, "created_at":"2025-01-07T14:03:28.116504Z", "updated_at":"2025-01-07T14:03:28.813193Z", + "source":{"subnet_id":"9d151252-e231-4f9f-8f23-b246318bd06d"}, "resource":{"type":"rdb_instance", + "id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "mac_address":"02:00:00:19:43:0B", "name":"cli-test"}, "tags":["managed", "scwdbaas"], "reverses":[], "region":"fr-par", "zone":null}]}' headers: Content-Length: - - "535" + - "534" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:40 GMT + - Tue, 07 Jan 2025 14:03:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,115 +3129,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e1c55e3-c486-40c6-98fd-ce0cb4a19416 + - c4f46915-1278-4046-89a4-fc8e38da9ece status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: DELETE response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1530" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:51:40 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2dace0c3-7845-4e38-a2bc-a46b22e97db4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 - method: GET - response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: @@ -1301,9 +3183,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:40 GMT + - Tue, 07 Jan 2025 14:03:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1311,51 +3193,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89a85d60-fea2-4939-bb13-7bf361bb1dce + - 8bc843b1-b904-472a-8fc3-bdd807a344fe status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, "tags":[], + body: '{"id":"f5d242a1-77b5-4a4d-867e-166d820328bb", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.852980Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.379634Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.75.199", "port":10181, "name":null, - "id":"fc2d3294-0fda-4fa9-b994-60a42aad5a02", "load_balancer":{}}, {"ip":"172.16.12.2", - "port":5432, "name":null, "id":"975b2558-ed30-447c-8206-3d73010142d6", "private_network":{"private_network_id":"f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip":"172.16.12.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], + "init_settings":[], "endpoints":[{"ip":"51.159.114.202", "port":23524, "name":null, + "id":"424247b7-0231-43c5-89e5-9f8f1abc9447", "load_balancer":{}}, {"ip":"172.16.0.2", + "port":5432, "name":null, "id":"b15296de-3c6a-4f83-afcc-11b624ec5ffd", "private_network":{"private_network_id":"ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip":"172.16.0.2/22", "zone":"fr-par-1", "provisioning_mode":"ipam"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.852980Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.379634Z", "region":"fr-par"}' headers: Content-Length: @@ -1365,9 +3247,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:55 GMT + - Tue, 07 Jan 2025 14:03:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,20 +3257,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5001f1f6-1b67-41d3-b564-c0a5f205571e + - 432d092e-4068-4d06-b7e9-73d8bdd1279b status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"f5d242a1-77b5-4a4d-867e-166d820328bb","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3e88fefa-1bf9-45a1-bbb1-f962d1a69126 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f5d242a1-77b5-4a4d-867e-166d820328bb method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"3e88fefa-1bf9-45a1-bbb1-f962d1a69126","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"f5d242a1-77b5-4a4d-867e-166d820328bb","type":"not_found"}' headers: Content-Length: - "129" @@ -1397,9 +3279,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:52:10 GMT + - Tue, 07 Jan 2025 14:04:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1407,7 +3289,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31c80d4a-0362-4724-84e6-367fb401406b + - 85480ebd-bd1b-47fa-996e-bd4f730fd360 status: 404 Not Found code: 404 duration: "" @@ -1417,7 +3299,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f965b737-8193-4868-8db8-67f78d7c9190 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ca76b144-f58c-4312-9345-e6e5619177f5 method: DELETE response: body: "" @@ -1427,9 +3309,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:52:12 GMT + - Tue, 07 Jan 2025 14:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1437,7 +3319,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 428b29ae-569e-45d4-abf4-ac45a65151fc + - a189caec-25ac-4646-8e7f-8f10ba2ad9a2 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.golden b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.golden index ba9e3474a..9394d1895 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.golden +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-ipam.golden @@ -1,34 +1,34 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -βœ… Endpoint 975b2558-ed30-447c-8206-3d73010142d6 successfully added. -ID IP PORT NAME HOSTNAME -fc2d3294-0fda-4fa9-b994-60a42aad5a02 51.159.75.199 10181 - - -975b2558-ed30-447c-8206-3d73010142d6 172.16.12.2 5432 - - +βœ… Endpoint b15296de-3c6a-4f83-afcc-11b624ec5ffd successfully added. +ID IP PORT NAME HOSTNAME +424247b7-0231-43c5-89e5-9f8f1abc9447 51.159.114.202 23524 - - +b15296de-3c6a-4f83-afcc-11b624ec5ffd 172.16.0.2 5432 - - 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Endpoints": [ { - "id": "fc2d3294-0fda-4fa9-b994-60a42aad5a02", - "ip": "51.159.75.199", - "port": 10181, + "id": "424247b7-0231-43c5-89e5-9f8f1abc9447", + "ip": "51.159.114.202", + "port": 23524, "name": null, "load_balancer": {} }, { - "id": "975b2558-ed30-447c-8206-3d73010142d6", - "ip": "172.16.12.2", + "id": "b15296de-3c6a-4f83-afcc-11b624ec5ffd", + "ip": "172.16.0.2", "port": 5432, "name": null, "private_network": { - "private_network_id": "f965b737-8193-4868-8db8-67f78d7c9190", - "service_ip": "172.16.12.2/22", + "private_network_id": "ca76b144-f58c-4312-9345-e6e5619177f5", + "service_ip": "172.16.0.2/22", "zone": "fr-par-1", "provisioning_mode": "ipam" } } ], "Success": { - "message": "Endpoint 975b2558-ed30-447c-8206-3d73010142d6 successfully added", + "message": "Endpoint b15296de-3c6a-4f83-afcc-11b624ec5ffd successfully added", "details": "" } } diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.cassette.yaml index 00b7fd54a..cc491182d 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", "name":"pn-quizzical-bose", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T15:47:35.127280Z", - "updated_at":"2024-11-19T15:47:35.127280Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"3f79a5c2-ea84-4850-96dd-ef9aadbf3b6b", "created_at":"2024-11-19T15:47:35.127280Z", - "updated_at":"2024-11-19T15:47:35.127280Z", "subnet":"172.16.8.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"a0d4b891-8d2e-4018-ab36-a8f928ec0681", "created_at":"2024-11-19T15:47:35.127280Z", - "updated_at":"2024-11-19T15:47:35.127280Z", "subnet":"fd49:821a:a311:2c73::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "name":"pn-xenodochial-proskuriakova", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:00:23.951660Z", + "updated_at":"2025-01-07T14:00:23.951660Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"7ed2d28d-138f-4d10-98f4-e27103e9966f", "created_at":"2025-01-07T14:00:23.951660Z", + "updated_at":"2025-01-07T14:00:23.951660Z", "subnet":"172.16.124.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"f174d1f0-f88c-4c3c-b9a4-3a8e7b0e49bc", "created_at":"2025-01-07T14:00:23.951660Z", + "updated_at":"2025-01-07T14:00:23.951660Z", "subnet":"fdcd:e4f1:8712:1c92::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", "name":"pn-quizzical-bose", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T15:47:35.127280Z", - "updated_at":"2024-11-19T15:47:35.127280Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"3f79a5c2-ea84-4850-96dd-ef9aadbf3b6b", "created_at":"2024-11-19T15:47:35.127280Z", - "updated_at":"2024-11-19T15:47:35.127280Z", "subnet":"172.16.8.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"a0d4b891-8d2e-4018-ab36-a8f928ec0681", "created_at":"2024-11-19T15:47:35.127280Z", - "updated_at":"2024-11-19T15:47:35.127280Z", "subnet":"fd49:821a:a311:2c73::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "name":"pn-xenodochial-proskuriakova", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:00:23.951660Z", + "updated_at":"2025-01-07T14:00:23.951660Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"7ed2d28d-138f-4d10-98f4-e27103e9966f", "created_at":"2025-01-07T14:00:23.951660Z", + "updated_at":"2025-01-07T14:00:23.951660Z", "subnet":"172.16.124.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"f174d1f0-f88c-4c3c-b9a4-3a8e7b0e49bc", "created_at":"2025-01-07T14:00:23.951660Z", + "updated_at":"2025-01-07T14:00:23.951660Z", "subnet":"fdcd:e4f1:8712:1c92::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1043" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:35 GMT + - Tue, 07 Jan 2025 14:00:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,97 +51,2105 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55d8fd7d-fea5-4416-a2fd-3c4acfc51ebf + - a4684550-eeac-4e59-a9a2-a87256a79ac6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST - response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' - headers: - Content-Length: - - "783" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:47:36 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e46a9383-3889-4cf6-a4a5-b365bfa8a1f8 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' headers: Content-Length: - - "783" + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:36 GMT + - Tue, 07 Jan 2025 14:00:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -149,132 +2157,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f52fe0a-4aa1-4ea2-a647-d7d290a2d621 + - 1eed73c4-0a8e-412e-9eb1-051ec78f7f7a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 - method: GET - response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' - headers: - Content-Length: - - "783" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 19 Nov 2024 15:47:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4394d35d-b96b-4abe-84ca-dfe901774f95 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' - form: {} - headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 - method: GET - response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' - headers: - Content-Length: - - "783" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:48:06 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3fe7a1e0-033b-435b-9736-27d011f906ed - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 - method: GET + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -283,9 +2197,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:21 GMT + - Tue, 07 Jan 2025 14:00:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,36 +2207,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab602e55-4108-45a1-bec9-87f82d12974f + - 511f6f14-02f7-4cd6-aa6f-2a1501de46c2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -331,9 +2245,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:36 GMT + - Tue, 07 Jan 2025 14:00:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -341,36 +2255,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7db9c184-0700-4fee-9df4-d151cf960ef2 + - 1f867cfe-39c1-463f-94f5-169bd8d4d196 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -379,9 +2293,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:51 GMT + - Tue, 07 Jan 2025 14:00:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -389,36 +2303,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cfb677e-4d2a-48aa-9d75-7b8a91d72baa + - 1402938a-ac6e-4c00-855e-4db64b140150 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -427,9 +2341,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:07 GMT + - Tue, 07 Jan 2025 14:00:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -437,36 +2351,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0f151ee-b25f-4247-92cb-de9ca29af9fe + - 397974f6-629f-41b8-a947-5964d4947927 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -475,9 +2389,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:22 GMT + - Tue, 07 Jan 2025 14:01:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,36 +2399,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2db70246-8734-4c30-9a87-af9a1c050f7f + - 7e666212-4b14-4f88-b70c-dd95c4ba621d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -523,9 +2437,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:37 GMT + - Tue, 07 Jan 2025 14:01:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -533,36 +2447,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6cddfaa-b752-48de-a6b1-b823cb2a7a62 + - 7111625c-c0d5-4eb4-b64e-5f7c7e79e7e8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -571,9 +2485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:52 GMT + - Tue, 07 Jan 2025 14:01:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -581,36 +2495,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eab797ea-0923-45cd-85f7-ffd6bdf438d8 + - c7bf9efd-82ad-48d7-a7ee-358224ff8348 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -619,9 +2533,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:07 GMT + - Tue, 07 Jan 2025 14:01:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -629,36 +2543,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c871a9ae-aa8f-40a3-87a5-467130274c6e + - 4fe4a055-9ca4-4d57-8a15-a83a8232102d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -667,9 +2581,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:22 GMT + - Tue, 07 Jan 2025 14:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -677,36 +2591,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1837225c-aa1a-486a-85fc-0f6e372912e3 + - abaf1dcf-f055-449a-a540-c4202a83f243 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -715,9 +2629,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:37 GMT + - Tue, 07 Jan 2025 14:02:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -725,42 +2639,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3121f957-9530-4e24-aa0f-eab2fc65314b + - 05495647-015a-4e96-9284-350d7b4c76ef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "1058" @@ -769,9 +2683,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:52 GMT + - Tue, 07 Jan 2025 14:02:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -779,42 +2693,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d684381-506a-42e2-95e1-4c3a71973bf2 + - 90bcee11-fa9f-4ca5-8afd-51589b0a16f5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:35.878227Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: - "1058" @@ -823,9 +2737,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:07 GMT + - Tue, 07 Jan 2025 14:02:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -833,47 +2747,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76ac7440-0333-47a2-8bf4-169e585efce2 + - e8aafa12-1ef5-4323-910b-f01943a993ec status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: @@ -883,9 +2797,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:23 GMT + - Tue, 07 Jan 2025 14:03:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,13 +2807,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9d1fd4e-dd5f-40fe-984b-89d9d948a1f8 + - d7e1f211-29b1-4bbd-b26e-bc479800315c status: 200 OK code: 200 duration: "" - request: - body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", - "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", + "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}' form: {} headers: @@ -907,11 +2821,11 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363/endpoints method: POST response: - body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", - "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", + "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}' headers: Content-Length: @@ -921,9 +2835,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:23 GMT + - Tue, 07 Jan 2025 14:03:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -931,51 +2845,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0097b6b-d958-4fee-a0d9-15aff87d2cc7 + - 1ab82d34-ef08-4bd0-81a6-e9a54bb88641 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", - "port":16346, "name":null, "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":7212, "name":null, "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", - "port":16346, "name":null, "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":7212, "name":null, "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: @@ -985,9 +2899,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:23 GMT + - Tue, 07 Jan 2025 14:03:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -995,51 +2909,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea090cba-279e-491f-9ca7-b521fd2be553 + - 5d89e689-2367-4617-9050-7e31a1891903 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: @@ -1049,9 +2963,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:38 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1059,51 +2973,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 677889c2-8f0a-46a5-a363-cf54741fa74f + - 6ce588ec-7703-4302-9d3e-8c8b796db594 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: @@ -1113,9 +3027,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:38 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1123,7 +3037,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8869492-96b3-4abb-964b-88242521d93a + - 8337f1a4-5319-4bee-a7cd-e3c55ccc2832 status: 200 OK code: 200 duration: "" @@ -1133,7 +3047,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=866cbdcb-7c36-42d1-9afd-b0395a77fff2&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=360bfbef-ce60-455c-a382-3005dd2d0363&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -1145,9 +3059,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:39 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1155,51 +3069,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47baf893-f7b5-4935-9a48-3143a9b44252 + - b21f419f-a243-4c3f-af79-138a603de949 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: DELETE response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: @@ -1209,9 +3123,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:39 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1219,51 +3133,51 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00a2fb0a-0008-4d66-ba32-cca063813a0b + - f2158999-1ca1-4c43-ab50-17051a493d17 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, "tags":[], + body: '{"id":"360bfbef-ce60-455c-a382-3005dd2d0363", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:35.878227Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.178638Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.11.19", "port":16346, "name":null, - "id":"aa2342a0-6c13-41be-9d72-54bb097170fb", "load_balancer":{}}, {"ip":"172.16.0.3", - "port":5432, "name":null, "id":"805bc5dc-839a-45bc-bfc6-8d2068f967b8", "private_network":{"private_network_id":"ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":7212, "name":null, + "id":"af6a39da-94fe-462f-81d3-ba36dae53b8c", "load_balancer":{}}, {"ip":"172.16.0.3", + "port":5432, "name":null, "id":"e609c33d-72a5-4d32-89a2-3706fba74fec", "private_network":{"private_network_id":"05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:35.878227Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.178638Z", "region":"fr-par"}' headers: Content-Length: @@ -1273,9 +3187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:39 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,20 +3197,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 922a5dd7-2704-41da-83c7-6c53c3e0433e + - 9380675a-89a2-4639-9af9-523ac4c8f7b1 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"360bfbef-ce60-455c-a382-3005dd2d0363","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/866cbdcb-7c36-42d1-9afd-b0395a77fff2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/360bfbef-ce60-455c-a382-3005dd2d0363 method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"866cbdcb-7c36-42d1-9afd-b0395a77fff2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"360bfbef-ce60-455c-a382-3005dd2d0363","type":"not_found"}' headers: Content-Length: - "129" @@ -1305,9 +3219,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:54 GMT + - Tue, 07 Jan 2025 14:03:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1315,7 +3229,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8429a07-ac85-4416-9b3c-87378010b712 + - 09c8744f-ddf4-4376-a4ff-2cb9bad6739f status: 404 Not Found code: 404 duration: "" @@ -1325,7 +3239,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ef99b867-702b-45b5-bf87-e60ab0ee1fd7 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05af7df5-bff3-4b34-ae28-88398f38b21b method: DELETE response: body: "" @@ -1335,9 +3249,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:55 GMT + - Tue, 07 Jan 2025 14:03:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1345,7 +3259,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3f6ed4c-9793-4a90-8d1e-972fbc50f487 + - df939401-70de-44a3-b719-c59c73fd3e86 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.golden b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.golden index 5f5dc2c73..8660ab3a0 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.golden +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-private-static.golden @@ -1,26 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -βœ… Endpoint 805bc5dc-839a-45bc-bfc6-8d2068f967b8 successfully added. -ID IP PORT NAME HOSTNAME -aa2342a0-6c13-41be-9d72-54bb097170fb 51.159.11.19 16346 - - -805bc5dc-839a-45bc-bfc6-8d2068f967b8 172.16.0.3 5432 - - +βœ… Endpoint e609c33d-72a5-4d32-89a2-3706fba74fec successfully added. +ID IP PORT NAME HOSTNAME +af6a39da-94fe-462f-81d3-ba36dae53b8c 195.154.71.12 7212 - - +e609c33d-72a5-4d32-89a2-3706fba74fec 172.16.0.3 5432 - - 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Endpoints": [ { - "id": "aa2342a0-6c13-41be-9d72-54bb097170fb", - "ip": "51.159.11.19", - "port": 16346, + "id": "af6a39da-94fe-462f-81d3-ba36dae53b8c", + "ip": "195.154.71.12", + "port": 7212, "name": null, "load_balancer": {} }, { - "id": "805bc5dc-839a-45bc-bfc6-8d2068f967b8", + "id": "e609c33d-72a5-4d32-89a2-3706fba74fec", "ip": "172.16.0.3", "port": 5432, "name": null, "private_network": { - "private_network_id": "ef99b867-702b-45b5-bf87-e60ab0ee1fd7", + "private_network_id": "05af7df5-bff3-4b34-ae28-88398f38b21b", "service_ip": "172.16.0.3/22", "zone": "fr-par-1", "provisioning_mode": "static" @@ -28,7 +28,7 @@ aa2342a0-6c13-41be-9d72-54bb097170fb 51.159.11.19 16346 - - } ], "Success": { - "message": "Endpoint 805bc5dc-839a-45bc-bfc6-8d2068f967b8 successfully added", + "message": "Endpoint e609c33d-72a5-4d32-89a2-3706fba74fec successfully added", "details": "" } } diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.cassette.yaml index 12f8b8f70..d3424055a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"5f3df926-2cdd-441c-8917-02369e9559a6", "name":"pn-frosty-joliot", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T15:47:35.227023Z", - "updated_at":"2024-11-19T15:47:35.227023Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"b8dd1cf5-5959-4bb3-bfdc-dee8c21c3167", "created_at":"2024-11-19T15:47:35.227023Z", - "updated_at":"2024-11-19T15:47:35.227023Z", "subnet":"172.16.20.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"f47bd73e-446c-4b99-85c8-8e05a003f2b0", "created_at":"2024-11-19T15:47:35.227023Z", - "updated_at":"2024-11-19T15:47:35.227023Z", "subnet":"fd49:821a:a311:cfcb::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"7edb4da5-96da-4916-8533-b29132ed172d", "name":"pn-cool-diffie", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:00:24.512121Z", + "updated_at":"2025-01-07T14:00:24.512121Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"f02426be-fc9f-4049-b9ea-18a7af96510e", "created_at":"2025-01-07T14:00:24.512121Z", + "updated_at":"2025-01-07T14:00:24.512121Z", "subnet":"172.16.200.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"10cf8546-cb8d-4436-b13a-92789908d8a8", "created_at":"2025-01-07T14:00:24.512121Z", + "updated_at":"2025-01-07T14:00:24.512121Z", "subnet":"fdcd:e4f1:8712:3ca1::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"5f3df926-2cdd-441c-8917-02369e9559a6", "name":"pn-frosty-joliot", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T15:47:35.227023Z", - "updated_at":"2024-11-19T15:47:35.227023Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"b8dd1cf5-5959-4bb3-bfdc-dee8c21c3167", "created_at":"2024-11-19T15:47:35.227023Z", - "updated_at":"2024-11-19T15:47:35.227023Z", "subnet":"172.16.20.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"f47bd73e-446c-4b99-85c8-8e05a003f2b0", "created_at":"2024-11-19T15:47:35.227023Z", - "updated_at":"2024-11-19T15:47:35.227023Z", "subnet":"fd49:821a:a311:cfcb::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"7edb4da5-96da-4916-8533-b29132ed172d", "name":"pn-cool-diffie", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:00:24.512121Z", + "updated_at":"2025-01-07T14:00:24.512121Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"f02426be-fc9f-4049-b9ea-18a7af96510e", "created_at":"2025-01-07T14:00:24.512121Z", + "updated_at":"2025-01-07T14:00:24.512121Z", "subnet":"172.16.200.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"10cf8546-cb8d-4436-b13a-92789908d8a8", "created_at":"2025-01-07T14:00:24.512121Z", + "updated_at":"2025-01-07T14:00:24.512121Z", "subnet":"fdcd:e4f1:8712:3ca1::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1043" + - "1042" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:35 GMT + - Tue, 07 Jan 2025 14:00:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb302749-6914-40eb-9d3c-5d6103c2a72f + - 385f5c0c-3126-480d-aa12-b132faa91668 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:36 GMT + - Tue, 07 Jan 2025 14:00:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71a3004b-b57e-4868-8e2f-9b592e3c5084 + - 3e833b5e-bba3-4ae0-93f0-03906aa849b5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:36 GMT + - Tue, 07 Jan 2025 14:00:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91972e7b-b5d7-41b2-9e06-ab4f68c8be13 + - e4c8b8c4-98e7-479e-807a-21a618d03b13 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:47:51 GMT + - Tue, 07 Jan 2025 14:00:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d76b1224-cf0d-4dce-b8c2-75f449169a2b + - d4c14c51-665d-455d-981b-ea6edf639976 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:06 GMT + - Tue, 07 Jan 2025 14:00:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e58a7cd2-317a-46fd-9baf-a6dcf5f26ec9 + - 4cf1a45c-be80-4857-81aa-a18b144b4021 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:21 GMT + - Tue, 07 Jan 2025 14:01:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05fd6072-8f54-4558-8c09-1ae4180f5a93 + - a5ce97ff-7885-43d8-8af0-e15a8656cb82 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:37 GMT + - Tue, 07 Jan 2025 14:01:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74dbc977-c633-4a2c-8ea3-9e5bd26448ea + - ae424b01-6274-4262-8bc8-08789fbf739f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:48:52 GMT + - Tue, 07 Jan 2025 14:01:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37facee8-c862-4af4-a92a-a2668ae35340 + - 69e69144-41af-4790-b685-2fcdf310455e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:07 GMT + - Tue, 07 Jan 2025 14:01:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 909db6d0-867b-401b-8dab-5aca8d60bb04 + - 5ca5c49c-43cd-4f84-8394-c5c673dc4d96 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:22 GMT + - Tue, 07 Jan 2025 14:02:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6666566-884f-4d41-8a9a-925e6a151a3b + - a522ccdb-5f0e-41bc-93dd-e668d407a242 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:37 GMT + - Tue, 07 Jan 2025 14:02:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0dbe439-c198-49c6-83f6-4e192dd0068e + - f564108d-9f8e-4003-ac6d-df6f68b3650d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:49:52 GMT + - Tue, 07 Jan 2025 14:02:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,207 +647,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfdd17e4-0801-4417-9801-9a25c21d51af + - c8e5a5bd-aa83-40ab-a7f2-fd112b6d9d8b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 - method: GET - response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:50:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d30eb08c-7cb2-4222-93fb-4c9f2ebc8eb3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 - method: GET - response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:50:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1374124-567d-46df-841c-761a4020cde3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 - method: GET - response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 15:50:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 66585e4e-f0ce-4732-90d9-34681b14a716 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T15:47:36.041715Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "port":5432, "name":null, "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T15:47:36.041715Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "port":5432, "name":null, "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -857,9 +695,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:53 GMT + - Tue, 07 Jan 2025 14:02:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -867,7 +705,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89a9897f-1f6f-4a6c-a5b0-d1d1efb551dc + - 239cabf5-d7ff-4191-94ce-c9eca704205b status: 200 OK code: 200 duration: "" @@ -879,7 +717,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd/endpoints method: POST response: body: '{"port":0, "name":null, "id":""}' @@ -891,9 +729,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:53 GMT + - Tue, 07 Jan 2025 14:02:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,47 +739,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8470058-c801-4db5-a7f7-7f54abae6be4 + - c93e843a-9e26-46d2-84f1-a2fcaf9b62dc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -951,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:50:53 GMT + - Tue, 07 Jan 2025 14:02:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -961,47 +799,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ca4866b-7686-4a9d-a57e-7b20cfb83d8f + - 72348561-8eca-4f4a-b20a-6bc709b80d23 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T15:47:36.041715Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: @@ -1011,9 +849,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:08 GMT + - Tue, 07 Jan 2025 14:03:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1021,63 +859,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d3d64d8-afac-497a-ae1d-835d088fe4bd + - c49d9c75-a59d-47d8-bd9e-ef8ba1dec2d7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":23097, "name":null, - "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", "load_balancer":{}}, "tags":[], + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":28739, "name":null, + "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":23097, "name":null, "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", + {"ip":"195.154.69.50", "port":28739, "name":null, "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:36.041715Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":23097, "name":null, - "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", "load_balancer":{}}, "tags":[], + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":28739, "name":null, + "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":23097, "name":null, "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", + {"ip":"195.154.69.50", "port":28739, "name":null, "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:36.041715Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:23 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,63 +923,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65089692-b893-430b-a8a8-3b52b31b22cc + - 466b75a2-701a-4fb1-8895-e750c28a17a7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":23097, "name":null, - "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", "load_balancer":{}}, "tags":[], + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":28739, "name":null, + "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":23097, "name":null, "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", + {"ip":"195.154.69.50", "port":28739, "name":null, "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:36.041715Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: GET response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":23097, "name":null, - "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", "load_balancer":{}}, "tags":[], + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":28739, "name":null, + "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":23097, "name":null, "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", + {"ip":"195.154.69.50", "port":28739, "name":null, "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:36.041715Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:23 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1149,7 +987,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3ea8437-684a-437d-849d-524d1ecb4220 + - 4bfa91e2-2d10-4f4d-838c-5204a2b3bac0 status: 200 OK code: 200 duration: "" @@ -1159,7 +997,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=7c572af9-6b30-43e5-8b0a-1c295408bd22&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=6d83f623-2802-411d-b7cc-0db708be64fd&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -1171,9 +1009,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:23 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,63 +1019,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15d615fc-0a4e-4685-b2e4-86e4c157d2a6 + - d5ac88a2-2166-4ceb-a547-36a649517589 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":23097, "name":null, - "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", "load_balancer":{}}, "tags":[], + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":28739, "name":null, + "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":23097, "name":null, "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", + {"ip":"195.154.69.50", "port":28739, "name":null, "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:36.041715Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7c572af9-6b30-43e5-8b0a-1c295408bd22 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d83f623-2802-411d-b7cc-0db708be64fd method: DELETE response: - body: '{"id":"7c572af9-6b30-43e5-8b0a-1c295408bd22", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":23097, "name":null, - "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", "load_balancer":{}}, "tags":[], + body: '{"id":"6d83f623-2802-411d-b7cc-0db708be64fd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":28739, "name":null, + "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T15:47:36.041715Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:00:25.474065Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"adb1fc06-2cf0-4660-a13e-1f92a54e8c61", "private_network":{"private_network_id":"5f3df926-2cdd-441c-8917-02369e9559a6", + "id":"39afbfc4-7d05-4349-b248-0dc1c0465ed1", "private_network":{"private_network_id":"7edb4da5-96da-4916-8533-b29132ed172d", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":23097, "name":null, "id":"6deeb5c0-0bc3-4805-bc82-f06c537093f9", + {"ip":"195.154.69.50", "port":28739, "name":null, "id":"9f32c59c-cc84-4d57-9d23-0c1a639af825", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T15:47:36.041715Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:00:25.474065Z", "region":"fr-par"}' headers: Content-Length: - - "1532" + - "1530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 15:51:24 GMT + - Tue, 07 Jan 2025 14:03:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1245,7 +1083,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7207cbf7-34b0-472f-9f90-3f4110cbf437 + - 8b80b744-0cfa-4e09-b0ba-b66253f04e2b status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.golden b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.golden index e6faba123..b9f24ad95 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.golden +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-create-public.golden @@ -1,34 +1,34 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -βœ… Endpoint 6deeb5c0-0bc3-4805-bc82-f06c537093f9 successfully added. -ID IP PORT NAME HOSTNAME -adb1fc06-2cf0-4660-a13e-1f92a54e8c61 172.16.0.3 5432 - - -6deeb5c0-0bc3-4805-bc82-f06c537093f9 51.159.204.219 23097 - - +βœ… Endpoint 9f32c59c-cc84-4d57-9d23-0c1a639af825 successfully added. +ID IP PORT NAME HOSTNAME +39afbfc4-7d05-4349-b248-0dc1c0465ed1 172.16.0.3 5432 - - +9f32c59c-cc84-4d57-9d23-0c1a639af825 195.154.69.50 28739 - - 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Endpoints": [ { - "id": "adb1fc06-2cf0-4660-a13e-1f92a54e8c61", + "id": "39afbfc4-7d05-4349-b248-0dc1c0465ed1", "ip": "172.16.0.3", "port": 5432, "name": null, "private_network": { - "private_network_id": "5f3df926-2cdd-441c-8917-02369e9559a6", + "private_network_id": "7edb4da5-96da-4916-8533-b29132ed172d", "service_ip": "172.16.0.3/22", "zone": "fr-par-1", "provisioning_mode": "static" } }, { - "id": "6deeb5c0-0bc3-4805-bc82-f06c537093f9", - "ip": "51.159.204.219", - "port": 23097, + "id": "9f32c59c-cc84-4d57-9d23-0c1a639af825", + "ip": "195.154.69.50", + "port": 28739, "name": null, "load_balancer": {} } ], "Success": { - "message": "Endpoint 6deeb5c0-0bc3-4805-bc82-f06c537093f9 successfully added", + "message": "Endpoint 9f32c59c-cc84-4d57-9d23-0c1a639af825 successfully added", "details": "" } } diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-all.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-all.cassette.yaml index 093c13133..439bec327 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-all.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-all.cassette.yaml @@ -2,92 +2,2100 @@ version: 1 interactions: - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST - response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' - headers: - Content-Length: - - "783" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:06:58 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e5e0aab-1aba-4f6c-94ee-e137d9b0be60 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' headers: Content-Length: - - "783" + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:06:59 GMT + - Tue, 07 Jan 2025 14:04:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,84 +2103,38 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37bd332a-9bad-47ec-b475-6403e4de4ce1 + - 7274a328-16e7-4171-a4e9-a894e259e426 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 - method: GET - response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' - headers: - Content-Length: - - "783" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 19 Nov 2024 16:07:14 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bf79a7a8-2b8d-4b2b-a91c-859bb0ad6cd4 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' - form: {} - headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 - method: GET + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -181,9 +2143,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:29 GMT + - Tue, 07 Jan 2025 14:04:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -191,36 +2153,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96c64201-66fa-4b5f-a38f-88df8bf806b2 + - b74ac84f-4d5d-4b5e-b307-506d0d8321b7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -229,9 +2191,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:44 GMT + - Tue, 07 Jan 2025 14:04:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -239,36 +2201,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4f0d285-eda9-4dd3-bf86-211cbb3f28eb + - 2ad3dfec-cd00-4781-9d2c-8b76f8cd8476 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -277,9 +2239,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:59 GMT + - Tue, 07 Jan 2025 14:04:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -287,36 +2249,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fbb479f-d9d7-40ee-a061-331277258b1a + - fd38dc53-8843-40f3-8f5c-565464a839c0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -325,9 +2287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:14 GMT + - Tue, 07 Jan 2025 14:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -335,36 +2297,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e531d57-ef37-4e45-9f08-99c65ea051c3 + - b15e48aa-16ef-4ebe-9c5e-a80e740f4742 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -373,9 +2335,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:29 GMT + - Tue, 07 Jan 2025 14:04:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,36 +2345,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c02b391-fe78-4d76-88cc-555afaa1e12f + - 32ea37b6-4084-46c8-a081-a86997ecfaa6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -421,9 +2383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:44 GMT + - Tue, 07 Jan 2025 14:05:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,36 +2393,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9555da10-5df3-4245-b456-586325aab717 + - 82aae732-6bb6-4c96-ad77-f55a853e59b9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -469,9 +2431,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:00 GMT + - Tue, 07 Jan 2025 14:05:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -479,36 +2441,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1960ed9-2b07-4f0c-8231-66a33976815e + - 4bd97efe-46b7-4727-8a2a-16046e987cee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -517,9 +2479,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:15 GMT + - Tue, 07 Jan 2025 14:05:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -527,36 +2489,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e1c3a4-7e8c-4183-baf6-d32f02bfbdc9 + - 4ae400d3-2c38-4f2d-883a-e6772ef1ca65 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -565,9 +2527,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:30 GMT + - Tue, 07 Jan 2025 14:05:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -575,36 +2537,36 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bd75f7e-0fdf-45a2-b9f3-12c40889bfe5 + - 467491f8-d817-4fe2-ba8c-12ec023a0197 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "783" @@ -613,63 +2575,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:45 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b5de951-6131-4610-91eb-9e2fde1c1cdb - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 - method: GET - response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' - headers: - Content-Length: - - "1058" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:10:00 GMT + - Tue, 07 Jan 2025 14:06:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -677,42 +2585,42 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39e220d8-e3c5-4683-8991-180d5ce81c2c + - afc6e2d7-cfd8-4f0d-b10b-b90c44362b7a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:58.771993Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - "1058" @@ -721,9 +2629,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:15 GMT + - Tue, 07 Jan 2025 14:06:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -731,59 +2639,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1ef1f84-5463-45f7-ad28-4c41dae1262d + - 7ace0680-68e1-49b1-8b7d-9a1e6ad226d1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.24.190", "port":9267, "name":null, - "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}, "tags":[], + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23012, "name":null, + "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.24.190", "port":9267, "name":null, - "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23012, "name":null, + "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.24.190", "port":9267, "name":null, - "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}, "tags":[], + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":23012, "name":null, + "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.24.190", "port":9267, "name":null, - "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23012, "name":null, + "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - - "1273" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:30 GMT + - Tue, 07 Jan 2025 14:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,7 +2699,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d57e660-553b-44de-8bca-e3ec13c22749 + - ac4fed45-8c65-46d6-a730-f4c131dc775a status: 200 OK code: 200 duration: "" @@ -801,7 +2709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/df127c55-7120-488d-b9eb-43b5b9946f26 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/faf5d793-9c60-470a-bc44-e38482af41cd method: DELETE response: body: "" @@ -811,9 +2719,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:31 GMT + - Tue, 07 Jan 2025 14:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -821,59 +2729,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9faadc9-945d-491c-a3a9-48192241f7a3 + - 3797fd7e-c367-435f-872b-cf34345734c9 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"configuring", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.24.190", - "port":9267, "name":null, "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}, + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":23012, "name":null, "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.24.190", "port":9267, "name":null, - "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23012, "name":null, + "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"configuring", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.24.190", - "port":9267, "name":null, "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}, + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":23012, "name":null, "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:58.771993Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.24.190", "port":9267, "name":null, - "id":"df127c55-7120-488d-b9eb-43b5b9946f26", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":23012, "name":null, + "id":"faf5d793-9c60-470a-bc44-e38482af41cd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: - - "1279" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:31 GMT + - Tue, 07 Jan 2025 14:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,41 +2789,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 685564ea-b7ba-41ab-a883-3e157d997499 + - c6e5623f-1d0d-4600-b279-42aa6ea3a1a1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:58.771993Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:58.771993Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: @@ -925,9 +2833,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:46 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -935,41 +2843,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18f6eaa6-34d1-4e97-af5c-60d57bdc4c9a + - aa07cace-4fc9-4de4-9fda-5b421006039a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:58.771993Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: GET response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:58.771993Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: @@ -979,9 +2887,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:46 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,41 +2897,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5afc9441-958d-40d5-8d84-88b7fc5a975f + - 709a1a11-b8cf-4e42-a7e1-61254f2e343f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:58.771993Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f98bdfb2-b39d-474a-b44e-bc33d306d433 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4 method: DELETE response: - body: '{"id":"f98bdfb2-b39d-474a-b44e-bc33d306d433", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"1abfaa12-ec9e-42c5-bd43-7ab0caf1e1e4", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:58.771993Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.896905Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:58.771993Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.896905Z", "region":"fr-par"}' headers: Content-Length: @@ -1033,9 +2941,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:46 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1043,7 +2951,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ac26ea-c8c9-43da-b98d-23d9b2d1a538 + - 24dc42e3-fc29-4be1-b06b-79962ba1e06c status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-private.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-private.cassette.yaml index a9fe75f4e..d8c41c555 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-private.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-private.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", "name":"pn-pensive-hertz", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:06:58.536080Z", - "updated_at":"2024-11-19T16:06:58.536080Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"8037116d-883a-4993-8858-90ca6dae90e0", "created_at":"2024-11-19T16:06:58.536080Z", - "updated_at":"2024-11-19T16:06:58.536080Z", "subnet":"172.16.16.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"2439beff-300c-48e2-b718-470b356ed45d", "created_at":"2024-11-19T16:06:58.536080Z", - "updated_at":"2024-11-19T16:06:58.536080Z", "subnet":"fd49:821a:a311:153f::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "name":"pn-wizardly-margulis", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:04:03.472611Z", + "updated_at":"2025-01-07T14:04:03.472611Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"f0d1eff6-a4b0-4eff-918c-173ba6d8a38d", "created_at":"2025-01-07T14:04:03.472611Z", + "updated_at":"2025-01-07T14:04:03.472611Z", "subnet":"172.16.124.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"ec826e68-3d81-4def-ab15-f8120ce74f01", "created_at":"2025-01-07T14:04:03.472611Z", + "updated_at":"2025-01-07T14:04:03.472611Z", "subnet":"fdcd:e4f1:8712:5665::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", "name":"pn-pensive-hertz", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:06:58.536080Z", - "updated_at":"2024-11-19T16:06:58.536080Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"8037116d-883a-4993-8858-90ca6dae90e0", "created_at":"2024-11-19T16:06:58.536080Z", - "updated_at":"2024-11-19T16:06:58.536080Z", "subnet":"172.16.16.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"2439beff-300c-48e2-b718-470b356ed45d", "created_at":"2024-11-19T16:06:58.536080Z", - "updated_at":"2024-11-19T16:06:58.536080Z", "subnet":"fd49:821a:a311:153f::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "name":"pn-wizardly-margulis", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:04:03.472611Z", + "updated_at":"2025-01-07T14:04:03.472611Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"f0d1eff6-a4b0-4eff-918c-173ba6d8a38d", "created_at":"2025-01-07T14:04:03.472611Z", + "updated_at":"2025-01-07T14:04:03.472611Z", "subnet":"172.16.124.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"ec826e68-3d81-4def-ab15-f8120ce74f01", "created_at":"2025-01-07T14:04:03.472611Z", + "updated_at":"2025-01-07T14:04:03.472611Z", "subnet":"fdcd:e4f1:8712:5665::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1043" + - "1048" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:06:59 GMT + - Tue, 07 Jan 2025 14:04:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77652047-29b1-4646-b24e-65d845bc788d + - fe54e39b-a34c-452d-b033-7e513d27f48a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:00 GMT + - Tue, 07 Jan 2025 14:04:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c586a5b-551d-49b3-b2e6-f1464e9a18c6 + - e3af0d9f-04a6-401e-8459-b842bc851a88 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:00 GMT + - Tue, 07 Jan 2025 14:04:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3c9b796-1ee4-4912-9522-387a05c38403 + - ea712758-508a-4d0c-ade9-7d9b656db921 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:15 GMT + - Tue, 07 Jan 2025 14:04:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b10d39f1-e284-4a31-9e55-dbb727e7b549 + - dc8e30b0-90d9-48bc-a1b2-76b5bd02730a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:30 GMT + - Tue, 07 Jan 2025 14:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f9cc3ba-6370-4a09-b1f1-9300ab6c4ae1 + - fe03a64e-155a-4bbf-89b1-5c51cbc50066 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:45 GMT + - Tue, 07 Jan 2025 14:04:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2879bde-ccac-4477-ab27-be7d7cfeacf4 + - a86da19f-fb4c-4c12-a52a-d67053873789 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:00 GMT + - Tue, 07 Jan 2025 14:05:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e260c5e-e566-40fc-bda7-8024f00e78cb + - fdc7e88c-7b91-477e-afaf-5ddacc9bb099 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:15 GMT + - Tue, 07 Jan 2025 14:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23be0b59-206b-4b68-83f9-6ab679174fc6 + - 9e63c61f-3ce1-4f03-8167-80cd08289685 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:31 GMT + - Tue, 07 Jan 2025 14:05:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18a6b480-e959-46ac-8761-d44ee22f025e + - 8836696c-ba82-4024-9d95-d077bec32867 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:46 GMT + - Tue, 07 Jan 2025 14:05:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80636268-93f4-4cd5-b4d9-319bc14582a2 + - b92bd69e-56af-485a-b7bb-476f1d1a1c8e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:01 GMT + - Tue, 07 Jan 2025 14:06:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1f0f9fd-f3ee-479d-a7aa-16b6e7691602 + - f40c6799-e0c4-4023-9df0-19d164e4df64 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:16 GMT + - Tue, 07 Jan 2025 14:06:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,101 +647,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31893af6-27a7-4f83-a0d6-603c5652baec + - fb521d28-c3ae-409f-94d6-2cd9dd15e733 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 - method: GET - response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:09:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74e113db-4d69-44cf-844b-65489d01bed3 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -751,9 +697,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:46 GMT + - Tue, 07 Jan 2025 14:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,47 +707,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba65703f-ad68-4396-a4d8-04edfb091059 + - 72bacf22-23a0-4abf-a0cb-0e2a815b5df6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: @@ -811,9 +757,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:01 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -821,63 +767,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dfe4cf9-7dab-4e52-8905-0d547c0a84b8 + - cdc5dc6d-102e-4acf-9718-d10d793fb6d5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":18581, "name":null, "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", + {"ip":"195.154.69.50", "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.359427Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":18581, "name":null, "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", + {"ip":"195.154.69.50", "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.359427Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:16 GMT + - Tue, 07 Jan 2025 14:07:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,7 +831,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 430948a0-ad87-488c-8263-ef8b981b9c92 + - eaafa3b6-07dd-4f9a-af3c-12daa99965b2 status: 200 OK code: 200 duration: "" @@ -895,7 +841,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/6f4a842d-cf1b-4a83-bd36-a75442c605f2 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/44cae8be-10da-47e4-abd3-a0dd32736313 method: DELETE response: body: "" @@ -905,9 +851,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:17 GMT + - Tue, 07 Jan 2025 14:07:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -915,63 +861,123 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f2d3e48-871d-4340-9ad3-e10829163e11 + - 0081a31b-9c7b-441d-8900-77342885c933 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"configuring", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", - "port":18581, "name":null, "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", + "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":18581, "name":null, "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", + {"ip":"195.154.69.50", "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.359427Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"configuring", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", - "port":18581, "name":null, "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", + "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"6f4a842d-cf1b-4a83-bd36-a75442c605f2", "private_network":{"private_network_id":"74c392a8-9bb3-43d5-9b20-a9a14efd6207", + "id":"44cae8be-10da-47e4-abd3-a0dd32736313", "private_network":{"private_network_id":"29f6afd4-a6c2-40c8-920f-43c40b68c3b0", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":18581, "name":null, "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", + {"ip":"195.154.69.50", "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.359427Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' + headers: + Content-Length: + - "1533" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:07:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e54870b0-6083-42b1-8c94-43a7fc51e7fc + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", + "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f + method: GET + response: + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", + "port":16911, "name":null, "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", + "region":"fr-par"}' headers: Content-Length: - - "1535" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:17 GMT + - Tue, 07 Jan 2025 14:07:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,59 +985,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 347a7942-7bea-4b3f-972f-e90279ffeea2 + - 357b1346-868c-4628-bb70-0dc16b735fd6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: - - "1277" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:07:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1039,59 +1045,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c042d0d-3142-4473-a4bf-5bead01552d7 + - 8b6e4edb-21b6-4400-abcb-dbd6b47d3fa0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: - - "1277" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:07:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,59 +1105,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbb25812-3fee-4d96-b8e3-71a04bd40564 + - 66f20cf3-639b-426f-a1f1-6c513e7b6d68 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: DELETE response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: - - "1280" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:07:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1159,59 +1165,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e80be40-6601-4735-a287-1399e71736ed + - a87319d7-76b2-499d-8b03-15fd3da25a8f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"id":"c496cf22-a208-40a6-9b68-e44964a7acf4", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}, "tags":[], + body: '{"id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.359427Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.790580Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.219", "port":18581, "name":null, - "id":"18554188-0aef-403c-b4fb-bbeddfa99a57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.50", "port":16911, "name":null, + "id":"ec317642-611b-4234-b9cd-f909c7dfe2de", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.359427Z", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.790580Z", "region":"fr-par"}' headers: Content-Length: - - "1280" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:07:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1219,20 +1225,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09c99276-503b-4d4d-834a-7a446f1d112f + - a3cd990d-d25c-4091-ae95-1b15f0f5452f status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"c496cf22-a208-40a6-9b68-e44964a7acf4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c496cf22-a208-40a6-9b68-e44964a7acf4 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b0a5ae29-b1d2-40fb-aecb-86b13f304c7f method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"c496cf22-a208-40a6-9b68-e44964a7acf4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"b0a5ae29-b1d2-40fb-aecb-86b13f304c7f","type":"not_found"}' headers: Content-Length: - "129" @@ -1241,9 +1247,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:48 GMT + - Tue, 07 Jan 2025 14:07:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1251,7 +1257,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74af9f8f-7d70-4e48-981f-e811ae062175 + - b68575ae-324d-4dab-a289-b9d1341189de status: 404 Not Found code: 404 duration: "" @@ -1261,7 +1267,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/74c392a8-9bb3-43d5-9b20-a9a14efd6207 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/29f6afd4-a6c2-40c8-920f-43c40b68c3b0 method: DELETE response: body: "" @@ -1271,9 +1277,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:50 GMT + - Tue, 07 Jan 2025 14:07:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,7 +1287,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ed4516-0dd2-44ed-90fd-4b3884ab2156 + - d015b66c-9131-4451-b6d8-1ad16ad3d5c6 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-public.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-public.cassette.yaml index a72788f4e..a4445bf79 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-public.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-delete-public.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"6cf94684-a9db-45ab-9c20-f293df9bd065", "name":"pn-elastic-carson", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:06:58.628559Z", - "updated_at":"2024-11-19T16:06:58.628559Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"d683fee4-860c-4b2d-9e9b-db9a121ef3b1", "created_at":"2024-11-19T16:06:58.628559Z", - "updated_at":"2024-11-19T16:06:58.628559Z", "subnet":"172.16.12.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"755e0068-cc07-487a-a68a-ff90a5e17d64", "created_at":"2024-11-19T16:06:58.628559Z", - "updated_at":"2024-11-19T16:06:58.628559Z", "subnet":"fd49:821a:a311:f395::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "name":"pn-modest-chaum", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:04:03.611108Z", + "updated_at":"2025-01-07T14:04:03.611108Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"f484b51e-f9d4-4ac7-8903-594217dcad9b", "created_at":"2025-01-07T14:04:03.611108Z", + "updated_at":"2025-01-07T14:04:03.611108Z", "subnet":"172.16.192.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"5e1226c1-0a38-475a-8fc1-8b81bac0c7e0", "created_at":"2025-01-07T14:04:03.611108Z", + "updated_at":"2025-01-07T14:04:03.611108Z", "subnet":"fdcd:e4f1:8712:a687::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"6cf94684-a9db-45ab-9c20-f293df9bd065", "name":"pn-elastic-carson", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:06:58.628559Z", - "updated_at":"2024-11-19T16:06:58.628559Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"d683fee4-860c-4b2d-9e9b-db9a121ef3b1", "created_at":"2024-11-19T16:06:58.628559Z", - "updated_at":"2024-11-19T16:06:58.628559Z", "subnet":"172.16.12.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"755e0068-cc07-487a-a68a-ff90a5e17d64", "created_at":"2024-11-19T16:06:58.628559Z", - "updated_at":"2024-11-19T16:06:58.628559Z", "subnet":"fd49:821a:a311:f395::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "name":"pn-modest-chaum", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:04:03.611108Z", + "updated_at":"2025-01-07T14:04:03.611108Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"f484b51e-f9d4-4ac7-8903-594217dcad9b", "created_at":"2025-01-07T14:04:03.611108Z", + "updated_at":"2025-01-07T14:04:03.611108Z", "subnet":"172.16.192.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"5e1226c1-0a38-475a-8fc1-8b81bac0c7e0", "created_at":"2025-01-07T14:04:03.611108Z", + "updated_at":"2025-01-07T14:04:03.611108Z", "subnet":"fdcd:e4f1:8712:a687::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1044" + - "1043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:06:59 GMT + - Tue, 07 Jan 2025 14:04:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c230083-4543-437a-ac9c-69c8363b101e + - d5cf4702-fa7e-4065-8696-2853d889bfc8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:00 GMT + - Tue, 07 Jan 2025 14:04:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7862ea6-6e0e-474a-9aa9-263179495991 + - 3393b737-d9f9-4e95-88cc-4383d3a8567d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:00 GMT + - Tue, 07 Jan 2025 14:04:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60d4111c-04a5-4a85-a46b-345c254a432a + - 4cfd573b-643c-4bc8-b182-7b9d785fb125 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:15 GMT + - Tue, 07 Jan 2025 14:04:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b3bde15-d660-4f4e-9712-fd59d78ef4e4 + - add3066b-03d2-45b1-96be-2cfc56a807b2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:30 GMT + - Tue, 07 Jan 2025 14:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f57ea31-0d6b-42a7-9ea1-027711f92d7b + - 19bc3b4c-7047-4e2d-9373-fe7a0944fac2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:07:45 GMT + - Tue, 07 Jan 2025 14:04:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf85f237-c846-4150-a02c-ca13f71c8485 + - dcda52ee-c890-429a-a4f0-ddd5c996ede2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:01 GMT + - Tue, 07 Jan 2025 14:05:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19e73a7f-9b25-494e-a9fa-e37ac088db3f + - 9953d92b-1bb9-47dc-ad0d-497212e5af57 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:16 GMT + - Tue, 07 Jan 2025 14:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdb9cf47-120a-4dc2-be89-62a25f8e2ecb + - 84f197eb-5b69-4ff7-ae21-c9ad23092b9e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:31 GMT + - Tue, 07 Jan 2025 14:05:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c97dba3-1b68-487a-96b7-9b526cd479fe + - bb07d790-615e-4777-a0aa-c1b60a2fac54 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:08:46 GMT + - Tue, 07 Jan 2025 14:05:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd2b5b10-e8c7-4c6f-b3e8-1e1dfd7945ed + - 6575b7db-acbc-4ffc-973e-bede75b877bb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:01 GMT + - Tue, 07 Jan 2025 14:06:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed31131f-1bb7-445b-adbb-eff398e6579e + - 93aae301-b5fb-4017-9e58-549b9d2b62aa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:09:16 GMT + - Tue, 07 Jan 2025 14:06:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,215 +647,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8999eb19-7ed2-4691-8a63-0b86bbda5bf2 + - b6e90240-39d5-4793-aefb-106709c4afda status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d - method: GET - response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:09:31 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6cb2b119-c988-414c-aeae-e451a8060996 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d - method: GET - response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:09:46 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5629bae-12ed-45bc-b49b-d2260398a32c - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d - method: GET - response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1308" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:10:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4e78fcf-01a2-475e-8a3f-7ebacdaf9d8a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -865,9 +697,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:17 GMT + - Tue, 07 Jan 2025 14:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -875,52 +707,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccbd79e7-5ef1-4a02-8135-c4583703b1bd + - 0d5665d7-b91e-4c10-be52-31bfd35c2fbe status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":15484, "name":null, - "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", "load_balancer":{}}, "tags":[], + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":4479, "name":null, + "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":15484, "name":null, "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", + {"ip":"51.159.114.202", "port":4479, "name":null, "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.468616Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":15484, "name":null, - "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", "load_balancer":{}}, "tags":[], + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", "port":4479, "name":null, + "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":15484, "name":null, "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", + {"ip":"51.159.114.202", "port":4479, "name":null, "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.468616Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: - "1527" @@ -929,9 +761,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -939,7 +771,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 841d1312-0e2f-4c14-865e-06c48ab18d2a + - 6c234ca8-cb9d-4f66-bec0-049c0b4600f2 status: 200 OK code: 200 duration: "" @@ -949,7 +781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/25cf4ae6-a96d-4a61-81cd-bca6313c7022 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/11c8115a-1074-4cc1-83dc-39f6b3223d57 method: DELETE response: body: "" @@ -959,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -969,52 +801,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a84fb907-c2e6-43de-b085-178a86c1cf56 + - 2006c79c-5520-48c6-98a4-090da15bb1d0 status: 204 No Content code: 204 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"configuring", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", - "port":15484, "name":null, "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", "load_balancer":{}}, + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", + "port":4479, "name":null, "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":15484, "name":null, "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", + {"ip":"51.159.114.202", "port":4479, "name":null, "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.468616Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"configuring", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", - "port":15484, "name":null, "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", "load_balancer":{}}, + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.114.202", + "port":4479, "name":null, "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:06:59.468616Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":15484, "name":null, "id":"25cf4ae6-a96d-4a61-81cd-bca6313c7022", + {"ip":"51.159.114.202", "port":4479, "name":null, "id":"11c8115a-1074-4cc1-83dc-39f6b3223d57", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:06:59.468616Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: - "1533" @@ -1023,9 +855,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:32 GMT + - Tue, 07 Jan 2025 14:06:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1033,45 +865,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bb8bffb-dc72-459c-9b74-4265cdc86b74 + - 64ee1ccf-d9e2-4e78-9265-495ae1fdf79c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -1081,9 +913,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:47 GMT + - Tue, 07 Jan 2025 14:07:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1091,45 +923,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfd9cfac-d596-45b0-9f28-29aadae8cdfc + - c1891060-19cc-43cd-8ece-3aab318fcf5c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -1139,9 +971,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:47 GMT + - Tue, 07 Jan 2025 14:07:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1149,7 +981,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f91bc6d5-e6b7-42e5-98db-8fd4843c73ca + - 2d588bd0-2407-4086-ac4c-ef4b571a9f9f status: 200 OK code: 200 duration: "" @@ -1159,7 +991,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=df10182d-07fb-4265-b847-2c2294fbe31d&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=9cfb42a8-4147-4855-98fd-38ca76ae8cb1&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -1171,9 +1003,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:47 GMT + - Tue, 07 Jan 2025 14:07:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,45 +1013,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d48659c4-fbc0-434c-bbe1-3ea22d1e8073 + - 9e6a3512-b910-4a44-9cde-fc82a2341d6c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: DELETE response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -1229,9 +1061,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:48 GMT + - Tue, 07 Jan 2025 14:07:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1239,45 +1071,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6c63540-b11d-4341-8093-8419a25cbba8 + - 1108b251-3da2-4db3-90dc-bb9160618316 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"id":"df10182d-07fb-4265-b847-2c2294fbe31d", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", + body: '{"id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-11-20T16:06:59.468616Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:04:04.891145Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", - "port":5432, "name":null, "id":"2fd7a339-7b62-48f5-9014-2fc04e540532", "private_network":{"private_network_id":"6cf94684-a9db-45ab-9c20-f293df9bd065", + "port":5432, "name":null, "id":"fcb29c9a-6252-4089-8489-15475927c70e", "private_network":{"private_network_id":"6317c3aa-bc97-4b28-93fc-a107af13c157", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:06:59.468616Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:04:04.891145Z", "region":"fr-par"}' headers: Content-Length: @@ -1287,9 +1119,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:10:48 GMT + - Tue, 07 Jan 2025 14:07:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,20 +1129,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce6da6b6-89b3-4235-960a-c13beb7efddf + - 728e30d3-b59b-4270-868d-50dea103aca2 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"df10182d-07fb-4265-b847-2c2294fbe31d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/df10182d-07fb-4265-b847-2c2294fbe31d + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9cfb42a8-4147-4855-98fd-38ca76ae8cb1 method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"df10182d-07fb-4265-b847-2c2294fbe31d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"9cfb42a8-4147-4855-98fd-38ca76ae8cb1","type":"not_found"}' headers: Content-Length: - "129" @@ -1319,9 +1151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:11:03 GMT + - Tue, 07 Jan 2025 14:07:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1329,7 +1161,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5306831-3191-4a24-9658-278223061df1 + - d3ae9519-fcd9-49da-ad64-759ad645aee1 status: 404 Not Found code: 404 duration: "" @@ -1339,7 +1171,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cf94684-a9db-45ab-9c20-f293df9bd065 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6317c3aa-bc97-4b28-93fc-a107af13c157 method: DELETE response: body: "" @@ -1349,9 +1181,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:11:05 GMT + - Tue, 07 Jan 2025 14:07:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1359,7 +1191,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d47d7df7-bf93-4f7b-b6bb-f05a8e3084ed + - dd447c08-99e9-4453-8b83-87786b63cb39 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.cassette.yaml index fc8a1119b..9ce75f76a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"3408763a-5fe3-4376-8471-e253cf53c639", "name":"pn-objective-ardinghelli", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:14:19.242236Z", - "updated_at":"2024-11-19T16:14:19.242236Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"d9c27686-0801-4999-87eb-72134365f361", "created_at":"2024-11-19T16:14:19.242236Z", - "updated_at":"2024-11-19T16:14:19.242236Z", "subnet":"172.16.28.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"465a9fa8-0f24-469f-a265-95ce4933e15f", "created_at":"2024-11-19T16:14:19.242236Z", - "updated_at":"2024-11-19T16:14:19.242236Z", "subnet":"fd49:821a:a311:e9cd::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"9736319b-e28e-4d02-9908-d34807882792", "name":"pn-hungry-albattani", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:07:55.485550Z", + "updated_at":"2025-01-07T14:07:55.485550Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"bc84757c-a412-4733-9509-ec179f57ea5f", "created_at":"2025-01-07T14:07:55.485550Z", + "updated_at":"2025-01-07T14:07:55.485550Z", "subnet":"172.16.40.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"6c07744d-0942-42b5-8452-538f967c9634", "created_at":"2025-01-07T14:07:55.485550Z", + "updated_at":"2025-01-07T14:07:55.485550Z", "subnet":"fdcd:e4f1:8712:f6e5::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"9736319b-e28e-4d02-9908-d34807882792", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"3408763a-5fe3-4376-8471-e253cf53c639", "name":"pn-objective-ardinghelli", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:14:19.242236Z", - "updated_at":"2024-11-19T16:14:19.242236Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"d9c27686-0801-4999-87eb-72134365f361", "created_at":"2024-11-19T16:14:19.242236Z", - "updated_at":"2024-11-19T16:14:19.242236Z", "subnet":"172.16.28.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"465a9fa8-0f24-469f-a265-95ce4933e15f", "created_at":"2024-11-19T16:14:19.242236Z", - "updated_at":"2024-11-19T16:14:19.242236Z", "subnet":"fd49:821a:a311:e9cd::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"9736319b-e28e-4d02-9908-d34807882792", "name":"pn-hungry-albattani", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:07:55.485550Z", + "updated_at":"2025-01-07T14:07:55.485550Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"bc84757c-a412-4733-9509-ec179f57ea5f", "created_at":"2025-01-07T14:07:55.485550Z", + "updated_at":"2025-01-07T14:07:55.485550Z", "subnet":"172.16.40.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"6c07744d-0942-42b5-8452-538f967c9634", "created_at":"2025-01-07T14:07:55.485550Z", + "updated_at":"2025-01-07T14:07:55.485550Z", "subnet":"fdcd:e4f1:8712:f6e5::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"9736319b-e28e-4d02-9908-d34807882792", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1051" + - "1046" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:19 GMT + - Tue, 07 Jan 2025 14:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c87bd1f-41e6-4d23-aede-5709f574710d + - 9d0484b9-586d-4b3f-bd67-2f74e499a47b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:20 GMT + - Tue, 07 Jan 2025 14:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a91fa38e-a754-44df-8361-2b284b0a6485 + - c69539e7-e646-4a27-a4a8-1184b05359fa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:20 GMT + - Tue, 07 Jan 2025 14:07:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e9d76d-4e4f-4be5-9a1e-ad7b442db456 + - fd0d8c66-27ac-41e0-93a5-876f5d3876f6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:35 GMT + - Tue, 07 Jan 2025 14:08:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31de92a4-5877-4dbe-b37b-eb6dc55bbd56 + - e40a9fdc-c330-4856-9dc1-94c941e7d319 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:50 GMT + - Tue, 07 Jan 2025 14:08:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fed43da-e114-4855-968b-c77b65bc1d7f + - 7b553028-7b84-4cf8-8d55-68a162da6026 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:06 GMT + - Tue, 07 Jan 2025 14:08:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f4a8327-8167-4a40-8170-ed835e11d81d + - 01720a42-33a4-4621-afe9-8712950b9c4a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:21 GMT + - Tue, 07 Jan 2025 14:08:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 165a8779-711d-4aea-8ad3-1392058d1f34 + - b0c57968-5df4-46fd-b295-370c4f9a0eaa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:36 GMT + - Tue, 07 Jan 2025 14:09:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afef200b-ef82-477e-8b68-0bb0b91c9e92 + - 28bae996-81a6-4672-b112-b45d8b92d6fb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:51 GMT + - Tue, 07 Jan 2025 14:09:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - febdf642-206a-49fc-9a4c-462bfa184ba3 + - d3696ff6-becd-42fd-818b-7f17d4b37fb7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:16:06 GMT + - Tue, 07 Jan 2025 14:09:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 431c1b00-c8c4-46f4-a45a-9f7c0c758aaf + - 883279a1-8b4b-41fb-963a-ef78d70b9256 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:16:21 GMT + - Tue, 07 Jan 2025 14:09:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 940514de-6123-4c27-8062-68c2d6edd58e + - 94c86990-6595-4407-ad40-f196c75b1811 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:16:36 GMT + - Tue, 07 Jan 2025 14:10:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,323 +647,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ce18473-523f-41aa-8988-c25aeaebd96b + - a9f20be5-1ce5-4962-8697-827f4d90811f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 - method: GET - response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:16:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 206c10a8-eb7c-43fc-bd8d-ab47acab91ac - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 - method: GET - response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:17:07 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ce1dc46-cc1d-42c1-80b3-353f6aee1239 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 - method: GET - response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:17:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da3c119a-3a72-451a-bbb4-9c33ad8bcaaf - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 - method: GET - response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:17:37 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8fa1956-0890-43bc-8533-7beb4d974dad - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 - method: GET - response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1308" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:17:52 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75b5d45b-1538-44da-b34c-271d32d65da9 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:20.066710Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: @@ -973,9 +697,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:07 GMT + - Tue, 07 Jan 2025 14:10:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,63 +707,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7025e5d6-ab82-4d32-892c-f5423393ad1a + - 39122869-c701-4c6e-87de-3becf50148f6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:22 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1047,23 +771,23 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e71c14e3-0c1f-452d-8ae6-44fb926df4d6 + - 129328a3-ccc9-4c05-a9b3-9021b992db16 status: 200 OK code: 200 duration: "" - request: - body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", - "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", + "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/0718fb65-18bf-419b-bfad-72d0b9ddb20a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1 method: GET response: - body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", - "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + body: '{"ip":"172.16.0.3", "port":5432, "name":null, "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", + "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}' headers: Content-Length: @@ -1073,9 +797,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:22 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,63 +807,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7169d310-a0ad-4a6e-9a35-e7ad46f799e2 + - 543c0d64-e41b-4772-a985-60d84087e185 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:23 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1147,7 +871,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a5fb188-79ab-4928-9e7e-51e019689b9f + - 8bad7de0-b3a6-47ba-8842-c6eca2719a63 status: 200 OK code: 200 duration: "" @@ -1157,7 +881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=9944ae77-074d-4f8f-98df-4f63f471fb19&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=988b48d2-eef1-4eff-9c36-33fb440d523a&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -1169,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:23 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,127 +903,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 601e0827-bcf8-46bc-bc43-20c44e21435f + - d460e2b1-18f9-43b2-8477-4eba7439724b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: DELETE response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' - headers: - Content-Length: - - "1532" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:18:23 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0d21dd8-d786-4a46-b559-5ff68a45b16e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], - "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 - method: GET - response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: - - "1532" + - "1528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:23 GMT + - Tue, 07 Jan 2025 14:10:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1307,63 +967,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75af4b8c-d691-4b7d-aa48-decfa4bbf080 + - 42d5164b-bce8-42cb-ba6a-4b68a56d6d2c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"id":"9944ae77-074d-4f8f-98df-4f63f471fb19", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22801, "name":null, - "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", "load_balancer":{}}, "tags":[], + body: '{"id":"988b48d2-eef1-4eff-9c36-33fb440d523a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":3423, "name":null, + "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:20.066710Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.399943Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"0718fb65-18bf-419b-bfad-72d0b9ddb20a", "private_network":{"private_network_id":"3408763a-5fe3-4376-8471-e253cf53c639", + "id":"a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "private_network":{"private_network_id":"9736319b-e28e-4d02-9908-d34807882792", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22801, "name":null, "id":"9be94c01-c037-4f0f-8c1d-66b78326bb35", + {"ip":"195.154.71.12", "port":3423, "name":null, "id":"b3bc4432-f45d-47e7-9671-c841d9ca8aed", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:20.066710Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.399943Z", "region":"fr-par"}' headers: Content-Length: - - "1532" + - "1528" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:38 GMT + - Tue, 07 Jan 2025 14:10:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,20 +1031,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c82992d2-2542-4c62-a58b-e9d85e9f1204 + - 352ed927-9c37-489e-a2d9-4724cbe016d5 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"9944ae77-074d-4f8f-98df-4f63f471fb19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"988b48d2-eef1-4eff-9c36-33fb440d523a","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9944ae77-074d-4f8f-98df-4f63f471fb19 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/988b48d2-eef1-4eff-9c36-33fb440d523a method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"9944ae77-074d-4f8f-98df-4f63f471fb19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"988b48d2-eef1-4eff-9c36-33fb440d523a","type":"not_found"}' headers: Content-Length: - "129" @@ -1393,9 +1053,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:53 GMT + - Tue, 07 Jan 2025 14:10:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,7 +1063,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 108792ae-eb51-413d-98a5-a5a705019a30 + - 7ffbbe97-437d-4f94-8ed8-6c93fd51eb51 status: 404 Not Found code: 404 duration: "" @@ -1413,7 +1073,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3408763a-5fe3-4376-8471-e253cf53c639 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9736319b-e28e-4d02-9908-d34807882792 method: DELETE response: body: "" @@ -1423,9 +1083,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:18:55 GMT + - Tue, 07 Jan 2025 14:11:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1433,7 +1093,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d604a831-98e1-4fa4-b9a4-415bed2faeb2 + - b231f6e6-50d8-44c9-83e1-358011765bbc status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.golden b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.golden index a0a581040..3ab9b316d 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.golden +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-private.golden @@ -1,20 +1,20 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 0718fb65-18bf-419b-bfad-72d0b9ddb20a +ID a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1 IP 172.16.0.3 Port 5432 -PrivateNetwork.PrivateNetworkID 3408763a-5fe3-4376-8471-e253cf53c639 +PrivateNetwork.PrivateNetworkID 9736319b-e28e-4d02-9908-d34807882792 PrivateNetwork.ServiceIP 172.16.0.3/22 PrivateNetwork.Zone fr-par-1 PrivateNetwork.ProvisioningMode static 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "0718fb65-18bf-419b-bfad-72d0b9ddb20a", + "id": "a30d1ee5-fb2f-4bf0-a3ba-d0c670ff33e1", "ip": "172.16.0.3", "port": 5432, "name": null, "private_network": { - "private_network_id": "3408763a-5fe3-4376-8471-e253cf53c639", + "private_network_id": "9736319b-e28e-4d02-9908-d34807882792", "service_ip": "172.16.0.3/22", "zone": "fr-par-1", "provisioning_mode": "static" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.cassette.yaml index 088ae4ce4..379b75ecc 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"27f4ea47-1365-4e22-b0ad-965046da14bc", "name":"pn-infallible-noyce", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:14:19.074751Z", - "updated_at":"2024-11-19T16:14:19.074751Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"fa0f49e7-efa2-41ed-ab3f-4a9a8b900e2a", "created_at":"2024-11-19T16:14:19.074751Z", - "updated_at":"2024-11-19T16:14:19.074751Z", "subnet":"172.16.8.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"e8063c08-5169-4818-a3e3-da1d75ba27e7", "created_at":"2024-11-19T16:14:19.074751Z", - "updated_at":"2024-11-19T16:14:19.074751Z", "subnet":"fd49:821a:a311:6017::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "name":"pn-bold-albattani", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:07:55.658604Z", + "updated_at":"2025-01-07T14:07:55.658604Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"71c845ae-b355-400b-a63f-32d92d707122", "created_at":"2025-01-07T14:07:55.658604Z", + "updated_at":"2025-01-07T14:07:55.658604Z", "subnet":"172.16.32.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"7c2a097d-3ca3-480a-ada9-5731ea4994c3", "created_at":"2025-01-07T14:07:55.658604Z", + "updated_at":"2025-01-07T14:07:55.658604Z", "subnet":"fdcd:e4f1:8712:c6df::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"27f4ea47-1365-4e22-b0ad-965046da14bc", "name":"pn-infallible-noyce", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:14:19.074751Z", - "updated_at":"2024-11-19T16:14:19.074751Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"fa0f49e7-efa2-41ed-ab3f-4a9a8b900e2a", "created_at":"2024-11-19T16:14:19.074751Z", - "updated_at":"2024-11-19T16:14:19.074751Z", "subnet":"172.16.8.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"e8063c08-5169-4818-a3e3-da1d75ba27e7", "created_at":"2024-11-19T16:14:19.074751Z", - "updated_at":"2024-11-19T16:14:19.074751Z", "subnet":"fd49:821a:a311:6017::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "name":"pn-bold-albattani", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:07:55.658604Z", + "updated_at":"2025-01-07T14:07:55.658604Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"71c845ae-b355-400b-a63f-32d92d707122", "created_at":"2025-01-07T14:07:55.658604Z", + "updated_at":"2025-01-07T14:07:55.658604Z", "subnet":"172.16.32.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"7c2a097d-3ca3-480a-ada9-5731ea4994c3", "created_at":"2025-01-07T14:07:55.658604Z", + "updated_at":"2025-01-07T14:07:55.658604Z", "subnet":"fdcd:e4f1:8712:c6df::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1045" + - "1044" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:19 GMT + - Tue, 07 Jan 2025 14:07:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f9ef0fb-cb18-4f4a-8bd2-4a5ac1ea4341 + - df792a80-d8eb-4fad-ad6b-99d0e7947d21 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:20 GMT + - Tue, 07 Jan 2025 14:07:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 198b6e61-8988-46b2-a778-d19d04c14189 + - 08f2c2e3-6bc6-4b6b-aa5e-c606e899403b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:20 GMT + - Tue, 07 Jan 2025 14:07:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59e5f5a4-d231-4cd4-997e-34d09bd302c8 + - 78982394-05da-4b20-b5ca-079885be2264 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:35 GMT + - Tue, 07 Jan 2025 14:08:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 898524ce-92b6-4c7d-a926-22ca1f324dcb + - 307beee3-9035-427b-92f4-ef0b38eb73ef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:14:50 GMT + - Tue, 07 Jan 2025 14:08:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 834f2130-5d79-40f7-b7e6-35ab36e82334 + - b7dc101e-2a4a-4374-b18e-3e24388ceac1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:05 GMT + - Tue, 07 Jan 2025 14:08:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cb49bbc-5e20-47ca-9882-b69bd579ed26 + - 45c71ff6-d6f1-41aa-a7f4-362e69917217 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:21 GMT + - Tue, 07 Jan 2025 14:08:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d38a64e-1127-40cd-906f-48452e4cb28c + - c9d9a2b0-089d-4d37-972c-18d3f60ccd31 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:36 GMT + - Tue, 07 Jan 2025 14:09:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7910c3e4-bb34-4e2a-83f3-05db85faf4f6 + - 9b85e885-1231-476f-8d0c-577dfc3ad131 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:15:51 GMT + - Tue, 07 Jan 2025 14:09:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3716362d-0a2f-41df-8bea-6579543bb55e + - a0a99660-b66c-4971-9130-0b166f8cdbe5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:16:06 GMT + - Tue, 07 Jan 2025 14:09:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71baf0e3-d856-407c-a1b5-0e03b559df15 + - bfd40ed5-203c-483a-a1f7-0372e92dde2d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:16:21 GMT + - Tue, 07 Jan 2025 14:09:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7596a0fc-e909-4164-b2cd-1cc3411c6bcf + - 9af92f69-5348-4245-a1e0-05862b82ccce status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:16:36 GMT + - Tue, 07 Jan 2025 14:10:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,101 +647,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b4b63cc-e838-4bb4-aac7-0f6546a05316 + - 0d7a1a28-9765-4665-ba75-94f49b40fb10 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 - method: GET - response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", - "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", - "region":"fr-par"}' - headers: - Content-Length: - - "1033" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:16:51 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - df128ca6-f01a-4f57-8785-5ee8dbf4d11e - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:14:19.913207Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: @@ -751,9 +697,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:06 GMT + - Tue, 07 Jan 2025 14:10:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,63 +707,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5e9715e-840f-4d9c-a34e-66559a7f4762 + - c82656ca-efe6-4dff-8cae-4c92c49c71d8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:22 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -825,33 +771,33 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d2ac2e5-f898-4c4b-9b70-430b88fdf0da + - 7d44f6e9-fb6b-4dfa-8d37-4ec19f9f937f status: 200 OK code: 200 duration: "" - request: - body: '{"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + body: '{"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/085fea40-fe0e-464c-bc27-333b5375ec29 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/563846c5-a0f3-4710-85b0-9a6f3d6a4e18 method: GET response: - body: '{"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + body: '{"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}' headers: Content-Length: - - "115" + - "114" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:22 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -859,63 +805,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7c8b863-0a30-4404-861b-50df6a64e8ee + - 5a407d75-5186-488e-8a46-cdcfdb92662f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: - - "1529" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:22 GMT + - Tue, 07 Jan 2025 14:10:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -923,7 +869,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83982568-6af1-4f5e-bccc-14061e59550b + - 46255dc3-a38c-4f56-ac4d-5e5cb5f2a123 status: 200 OK code: 200 duration: "" @@ -933,7 +879,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=f150ca45-91a0-47de-aa69-de7927c127a3&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=6dee9480-d86e-4074-abc5-b05f4f73364c&resource_type=rdb_instance method: GET response: body: '{"total_count":0, "ips":[]}' @@ -945,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:22 GMT + - Tue, 07 Jan 2025 14:10:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -955,63 +901,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b99dfb1-5749-41c8-ae10-603fd2d8627d + - d0788b7f-a3c3-4a86-ae43-f854b9054730 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: DELETE response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: - - "1532" + - "1530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:22 GMT + - Tue, 07 Jan 2025 14:10:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1019,63 +965,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d40f85d7-ed90-4a4f-b9af-77d918a1add2 + - 702837fd-5c8d-414c-9a01-1dc978abb5cf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"id":"f150ca45-91a0-47de-aa69-de7927c127a3", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.219", "port":22931, "name":null, - "id":"085fea40-fe0e-464c-bc27-333b5375ec29", "load_balancer":{}}, "tags":[], + body: '{"id":"6dee9480-d86e-4074-abc5-b05f4f73364c", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":17183, "name":null, + "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:14:19.913207Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:07:56.566931Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"c8880913-644c-4e5c-b52e-b2edba647e5c", "private_network":{"private_network_id":"27f4ea47-1365-4e22-b0ad-965046da14bc", + "id":"2ca69956-a846-42f9-a8fa-6dcf3a1b4a10", "private_network":{"private_network_id":"dea404f5-f684-4aa2-b92c-a2a8f3ea0baf", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.204.219", "port":22931, "name":null, "id":"085fea40-fe0e-464c-bc27-333b5375ec29", + {"ip":"195.154.71.12", "port":17183, "name":null, "id":"563846c5-a0f3-4710-85b0-9a6f3d6a4e18", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:14:19.913207Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:07:56.566931Z", "region":"fr-par"}' headers: Content-Length: - - "1532" + - "1530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:22 GMT + - Tue, 07 Jan 2025 14:10:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,20 +1029,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d0a9e78-48c0-4541-80ab-9c092c914258 + - f2afaa2b-a445-4739-b8ae-fcd83ecdbab6 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"f150ca45-91a0-47de-aa69-de7927c127a3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"6dee9480-d86e-4074-abc5-b05f4f73364c","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/f150ca45-91a0-47de-aa69-de7927c127a3 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6dee9480-d86e-4074-abc5-b05f4f73364c method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"f150ca45-91a0-47de-aa69-de7927c127a3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"6dee9480-d86e-4074-abc5-b05f4f73364c","type":"not_found"}' headers: Content-Length: - "129" @@ -1105,9 +1051,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:37 GMT + - Tue, 07 Jan 2025 14:10:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1115,7 +1061,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb78d93-1be6-4f61-8307-d9c4f7b261df + - e7615ec5-1059-47b8-bed5-fdbb36b6ebcc status: 404 Not Found code: 404 duration: "" @@ -1125,7 +1071,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/27f4ea47-1365-4e22-b0ad-965046da14bc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dea404f5-f684-4aa2-b92c-a2a8f3ea0baf method: DELETE response: body: "" @@ -1135,9 +1081,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:17:39 GMT + - Tue, 07 Jan 2025 14:11:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,7 +1091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df0f229a-8b9e-480c-b5be-0134fb3941a5 + - 4a4cfc0e-e50b-4d98-b8af-b69812edc5c5 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.golden b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.golden index c95eec350..0cbfe51e6 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.golden +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-get-public.golden @@ -1,13 +1,13 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID 085fea40-fe0e-464c-bc27-333b5375ec29 -IP 51.159.204.219 -Port 22931 +ID 563846c5-a0f3-4710-85b0-9a6f3d6a4e18 +IP 195.154.71.12 +Port 17183 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "085fea40-fe0e-464c-bc27-333b5375ec29", - "ip": "51.159.204.219", - "port": 22931, + "id": "563846c5-a0f3-4710-85b0-9a6f3d6a4e18", + "ip": "195.154.71.12", + "port": 17183, "name": null, "load_balancer": {} } diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.cassette.yaml index 6518b1d82..94995fcbf 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.cassette.yaml @@ -2,16 +2,16 @@ version: 1 interactions: - request: - body: '{"id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", "name":"pn-exciting-babbage", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:28:46.828785Z", - "updated_at":"2024-11-19T16:28:46.828785Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"d41c238c-4205-409f-80c6-6f4e5ba8f363", "created_at":"2024-11-19T16:28:46.828785Z", - "updated_at":"2024-11-19T16:28:46.828785Z", "subnet":"172.16.40.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"d98714b3-6d28-4ee8-8b74-7ccad43c2bc5", "created_at":"2024-11-19T16:28:46.828785Z", - "updated_at":"2024-11-19T16:28:46.828785Z", "subnet":"fd49:821a:a311:1cc0::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"46f12434-2e71-424a-a801-441f9149b198", "name":"pn-silly-blackburn", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:11:00.832997Z", + "updated_at":"2025-01-07T14:11:00.832997Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"c7bf4f0f-3403-4166-adb8-e48cca769bc0", "created_at":"2025-01-07T14:11:00.832997Z", + "updated_at":"2025-01-07T14:11:00.832997Z", "subnet":"172.16.28.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"335ab175-8e14-47d3-bb4e-9cf9b2976a1b", "created_at":"2025-01-07T14:11:00.832997Z", + "updated_at":"2025-01-07T14:11:00.832997Z", "subnet":"fdcd:e4f1:8712:28c4::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"46f12434-2e71-424a-a801-441f9149b198", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' form: {} headers: @@ -22,28 +22,28 @@ interactions: url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: - body: '{"id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", "name":"pn-exciting-babbage", - "tags":[], "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "created_at":"2024-11-19T16:28:46.828785Z", - "updated_at":"2024-11-19T16:28:46.828785Z", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "subnets":[{"id":"d41c238c-4205-409f-80c6-6f4e5ba8f363", "created_at":"2024-11-19T16:28:46.828785Z", - "updated_at":"2024-11-19T16:28:46.828785Z", "subnet":"172.16.40.0/22", "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}, - {"id":"d98714b3-6d28-4ee8-8b74-7ccad43c2bc5", "created_at":"2024-11-19T16:28:46.828785Z", - "updated_at":"2024-11-19T16:28:46.828785Z", "subnet":"fd49:821a:a311:1cc0::/64", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", - "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8"}], "vpc_id":"4c837446-e418-4326-af43-4a445ea0aab8", + body: '{"id":"46f12434-2e71-424a-a801-441f9149b198", "name":"pn-silly-blackburn", + "tags":[], "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "created_at":"2025-01-07T14:11:00.832997Z", + "updated_at":"2025-01-07T14:11:00.832997Z", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "subnets":[{"id":"c7bf4f0f-3403-4166-adb8-e48cca769bc0", "created_at":"2025-01-07T14:11:00.832997Z", + "updated_at":"2025-01-07T14:11:00.832997Z", "subnet":"172.16.28.0/22", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}, + {"id":"335ab175-8e14-47d3-bb4e-9cf9b2976a1b", "created_at":"2025-01-07T14:11:00.832997Z", + "updated_at":"2025-01-07T14:11:00.832997Z", "subnet":"fdcd:e4f1:8712:28c4::/64", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "private_network_id":"46f12434-2e71-424a-a801-441f9149b198", + "vpc_id":"d4535842-cddd-478d-a978-1797d57da787"}], "vpc_id":"d4535842-cddd-478d-a978-1797d57da787", "dhcp_enabled":true, "region":"fr-par"}' headers: Content-Length: - - "1046" + - "1045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:28:47 GMT + - Tue, 07 Jan 2025 14:11:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -51,22 +51,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f91e473-ea30-4b6d-8300-0aa396976861 + - 305ffe48-db13-45ec-a724-3f8996a3ba05 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: @@ -77,17 +77,17 @@ interactions: url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -97,9 +97,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:28:48 GMT + - Tue, 07 Jan 2025 14:11:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,41 +107,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a813f56-87f2-4daa-b1c2-3933938e5cf7 + - 2d52c1b0-631e-4c49-9e80-795eaeba6a1c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -151,9 +151,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:28:48 GMT + - Tue, 07 Jan 2025 14:11:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,41 +161,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7783ff93-4ffc-449d-8f86-394d8a6d975d + - 75a18223-05b4-4076-b6ea-26292075e4a5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -205,9 +205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:29:03 GMT + - Tue, 07 Jan 2025 14:11:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,41 +215,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44b03e2e-e67f-42d2-b68d-373a919b8bd3 + - 25394eb8-4d26-4159-9d9c-55eca8220591 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -259,9 +259,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:29:18 GMT + - Tue, 07 Jan 2025 14:11:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,41 +269,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f2da11d-5d0e-4c27-bfeb-3449ad0f0a36 + - f154e98f-5138-4ede-9cc6-5fb81f07e5d2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -313,9 +313,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:29:33 GMT + - Tue, 07 Jan 2025 14:11:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,41 +323,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14a1dc6f-7450-4109-9569-00f1d2d3fc8c + - dba56a8a-aa48-400a-a025-17d37d9bf957 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"provisioning", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -367,9 +367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:29:48 GMT + - Tue, 07 Jan 2025 14:12:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,41 +377,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10e6b478-d7ff-4941-b887-f4e8f9a4a1ed + - be10109a-33cb-4d72-a57e-495cd2cc0ee8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -421,9 +421,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:30:04 GMT + - Tue, 07 Jan 2025 14:12:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,41 +431,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4011a0cd-f305-41f0-a2d4-8a2615de8d19 + - 063f2f0e-af57-420f-af02-72efd83eedf3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -475,9 +475,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:30:19 GMT + - Tue, 07 Jan 2025 14:12:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,41 +485,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e383fbc-c584-48ae-bda4-1d1e8ad92bac + - 5eefe1a8-6bec-4c4a-9314-578be0d2ca6a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -529,9 +529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:30:34 GMT + - Tue, 07 Jan 2025 14:12:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,41 +539,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bec45cb-f7fa-418a-bb92-ee03a51c0247 + - ec54c6b1-d312-431e-9719-274040ddd751 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:30:49 GMT + - Tue, 07 Jan 2025 14:13:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,41 +593,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0282832b-3485-4887-bb8a-90023bdc6ad9 + - fb0de247-e7c7-4631-9f40-46e85ad08b57 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -637,9 +637,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:31:04 GMT + - Tue, 07 Jan 2025 14:13:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,41 +647,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07c2aa5c-2f32-4f2b-a571-0ecc211d4f5e + - 074e344e-b3ce-4ed6-8953-32db3aec60a8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:31:19 GMT + - Tue, 07 Jan 2025 14:13:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,41 +701,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a355a5d3-3470-4702-804b-a433c42388dd + - a228db48-ca0d-4fce-b15b-9e11dc760c3e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -745,9 +745,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:31:35 GMT + - Tue, 07 Jan 2025 14:13:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -755,41 +755,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 310bd3f8-f489-4f5f-b3d2-7723d3531226 + - e98e1e98-4b6a-4847-8231-de1891627c60 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -799,9 +799,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:31:50 GMT + - Tue, 07 Jan 2025 14:14:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -809,41 +809,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc2de6f1-0ab2-4419-abf8-32fb3c34d18c + - 2f84cc0e-3399-49b6-b0a8-09aec25d3a33 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -853,9 +853,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:32:05 GMT + - Tue, 07 Jan 2025 14:14:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -863,41 +863,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb72119c-ff51-423e-b12e-6449c2b6d59c + - ec7f255e-d8c4-4ffd-b3bc-773fe819d9a3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -907,9 +907,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:32:20 GMT + - Tue, 07 Jan 2025 14:14:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -917,41 +917,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5613386d-8843-48aa-8626-05d49cb0541c + - 7862dc35-54cb-4261-817f-ff9047d0884a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -961,9 +961,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:32:35 GMT + - Tue, 07 Jan 2025 14:14:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -971,47 +971,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35e2939d-5a4e-4ae7-9c3b-772a707449ff + - 865e0a70-9257-4a8b-af06-9416191f7c92 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -1021,9 +1021,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:32:50 GMT + - Tue, 07 Jan 2025 14:15:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1031,47 +1031,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0862bc7-7e0a-4048-bd5f-1277072be673 + - 21dae2a7-4926-47da-b166-1cb6ad0e1d25 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"initializing", + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "encryption":{"enabled":false}, "created_at":"2024-11-19T16:28:47.723508Z", + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: @@ -1081,9 +1081,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:06 GMT + - Tue, 07 Jan 2025 14:15:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1091,103 +1091,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05c5c93f-593c-457c-95a3-b93c86d27a53 + - 46567f10-cd3b-4f1e-8e54-2cf82a0bf200 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", + "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' - headers: - Content-Length: - - "1527" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 19 Nov 2024 16:33:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c80e3890-2cbc-4331-8ee3-001246225af2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"sieben-macbook", - "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2023-03-28T09:41:12.847132Z", - "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW363CZ5SRN5YHQBGXY - method: GET - response: - body: '{"access_key":"SCW363CZ5SRN5YHQBGXY", "secret_key":null, "description":"sieben-macbook", - "created_at":"2023-03-28T09:41:12.847132Z", "updated_at":"2023-03-28T09:41:12.847132Z", - "expires_at":null, "default_project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.73.9", - "user_id":"b49d82c1-ce3a-473f-9cef-420acc5256bf"}' + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", + "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}], + "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:11:01.712028Z", + "region":"fr-par"}' headers: Content-Length: - - "387" + - "1308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:21 GMT + - Tue, 07 Jan 2025 14:15:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,52 +1151,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9032953a-2770-43c0-aa12-7ed882ee4fae + - 904a1089-2fd4-47cb-834a-222f0c7e4b8e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"ready", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: - "1527" @@ -1249,9 +1205,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:21 GMT + - Tue, 07 Jan 2025 14:15:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1259,63 +1215,63 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcbe6c37-9921-43dc-a3d1-ea5cce159f51 + - ac88a7a9-02c0-46bc-903b-25f6620ff499 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 - method: DELETE + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f + method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: - - "1530" + - "1527" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:21 GMT + - Tue, 07 Jan 2025 14:15:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1323,52 +1279,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d900bd5a-02c9-4769-8c77-aefeb9c90985 + - 15de68cc-1bb1-4d68-a455-52544dee4715 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 - method: GET + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f + method: DELETE response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: - "1530" @@ -1377,9 +1333,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:21 GMT + - Tue, 07 Jan 2025 14:15:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1387,52 +1343,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e110282-52db-4ab7-9949-5682f4e6ac19 + - 5e375d64-b630-42f2-845f-3de1cd2253ef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233", "name":"cli-test", "organization_id":"951df375-e094-4d26-97c1-ba548eeb9c42", - "project_id":"951df375-e094-4d26-97c1-ba548eeb9c42", "status":"deleting", "engine":"PostgreSQL-15", - "upgradable_version":[], "endpoint":{"ip":"51.159.75.175", "port":11645, "name":null, - "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", "load_balancer":{}}, "tags":[], + body: '{"id":"6672c814-8480-4bb7-b230-fd47b41f808f", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21923, "name":null, + "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-11-20T16:28:47.723508Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:11:01.712028Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"dbc38f0e-800a-4c12-a623-4bfee6862bd9", "private_network":{"private_network_id":"a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "id":"ab06a941-0824-4b06-8f9c-1645a1de755f", "private_network":{"private_network_id":"46f12434-2e71-424a-a801-441f9149b198", "service_ip":"172.16.0.3/22", "zone":"fr-par-1", "provisioning_mode":"static"}}, - {"ip":"51.159.75.175", "port":11645, "name":null, "id":"f0461334-12d9-48a9-b9c3-2f1db1728053", + {"ip":"195.154.71.12", "port":21923, "name":null, "id":"23857e88-0019-4b3f-98d5-8cd64090109f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, - "created_at":"2024-11-19T16:28:47.723508Z", "region":"fr-par"}' + "created_at":"2025-01-07T14:11:01.712028Z", "region":"fr-par"}' headers: Content-Length: - "1530" @@ -1441,9 +1397,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:37 GMT + - Tue, 07 Jan 2025 14:15:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1451,20 +1407,20 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c81bcb7-fe34-454c-a03b-f27d5c574d20 + - f4a3ee01-575e-459d-b64d-59a228de75d0 status: 200 OK code: 200 duration: "" - request: - body: '{"message":"resource is not found","resource":"instance","resource_id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"6672c814-8480-4bb7-b230-fd47b41f808f","type":"not_found"}' form: {} headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d38ca86f-2222-4f0f-80e1-6a9ddf72c233 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6672c814-8480-4bb7-b230-fd47b41f808f method: GET response: - body: '{"message":"resource is not found","resource":"instance","resource_id":"d38ca86f-2222-4f0f-80e1-6a9ddf72c233","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"6672c814-8480-4bb7-b230-fd47b41f808f","type":"not_found"}' headers: Content-Length: - "129" @@ -1473,9 +1429,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:52 GMT + - Tue, 07 Jan 2025 14:16:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1483,7 +1439,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c7b75a6-c355-4e7e-ada0-cb81723d3827 + - 06564bf5-e23d-4635-a0f0-63e670ded1f9 status: 404 Not Found code: 404 duration: "" @@ -1493,7 +1449,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a39d9d0e-5860-4b87-8f8f-b9384fa497d5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/46f12434-2e71-424a-a801-441f9149b198 method: DELETE response: body: "" @@ -1503,9 +1459,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 19 Nov 2024 16:33:53 GMT + - Tue, 07 Jan 2025 14:16:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1513,7 +1469,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a10b185f-dfe0-4ab5-8ba2-00f2f936a2a7 + - e232f94e-8261-4efd-8f80-2ed760350944 status: 204 No Content code: 204 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.golden b/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.golden index d0bc27233..e287f7df2 100644 --- a/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.golden +++ b/internal/namespaces/rdb/v1/testdata/test-endpoint-list-multiple-endpoints.golden @@ -1,26 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ ID IP PORT NAME HOSTNAME -dbc38f0e-800a-4c12-a623-4bfee6862bd9 172.16.0.3 5432 - - -f0461334-12d9-48a9-b9c3-2f1db1728053 51.159.75.175 11645 - - +ab06a941-0824-4b06-8f9c-1645a1de755f 172.16.0.3 5432 - - +23857e88-0019-4b3f-98d5-8cd64090109f 195.154.71.12 21923 - - 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { - "id": "dbc38f0e-800a-4c12-a623-4bfee6862bd9", + "id": "ab06a941-0824-4b06-8f9c-1645a1de755f", "ip": "172.16.0.3", "port": 5432, "name": null, "private_network": { - "private_network_id": "a39d9d0e-5860-4b87-8f8f-b9384fa497d5", + "private_network_id": "46f12434-2e71-424a-a801-441f9149b198", "service_ip": "172.16.0.3/22", "zone": "fr-par-1", "provisioning_mode": "static" } }, { - "id": "f0461334-12d9-48a9-b9c3-2f1db1728053", - "ip": "51.159.75.175", - "port": 11645, + "id": "23857e88-0019-4b3f-98d5-8cd64090109f", + "ip": "195.154.71.12", + "port": 21923, "name": null, "load_balancer": {} } diff --git a/internal/namespaces/rdb/v1/testdata/test-engine-list-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-engine-list-simple.cassette.yaml index 5ae4c4ee9..67327b25c 100644 --- a/internal/namespaces/rdb/v1/testdata/test-engine-list-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-engine-list-simple.cassette.yaml @@ -159,18 +159,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -199,33 +202,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -279,18 +304,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -319,33 +347,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -399,18 +449,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -439,33 +492,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -519,18 +594,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -559,33 +637,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -604,7 +704,7 @@ interactions: {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets the maximum memory to be used for query workspaces.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, - "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, "description":"Background writer sleep time between rounds.", "property_type":"INT", @@ -705,7 +805,10 @@ interactions: "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -940,7 +1043,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines?page=1 method: GET response: @@ -1100,19 +1203,22 @@ interactions: "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", - "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -1141,33 +1247,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -1221,18 +1349,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -1261,33 +1392,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -1341,18 +1494,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -1381,33 +1537,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -1461,18 +1639,21 @@ interactions: "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, "description":"Sets the planner s assumption about the size of the data cache.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, - "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", - "default_value":"off", "hot_configurable":true, "description":"Specifies whether - or not a hot standby will send feedback to the primary or upstream standby about - queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, - "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, - "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", - "hot_configurable":true, "description":"Sets the maximum allowed duration of - any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, - "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", - "default_value":"0", "hot_configurable":false, "description":"Sets the maximum - allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", "hot_configurable":true, "description":"Sets the minimum execution time above which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", @@ -1501,33 +1682,55 @@ interactions: "default_value":"1024", "hot_configurable":true, "description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, - "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", - "default_value":"86400000", "hot_configurable":true, "description":"Sets the - maximum allowed duration of any statement. Value in ms", "property_type":"INT", - "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", - "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", - "hot_configurable":true, "description":"Time between issuing TCP keepalives.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", - "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", - "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, - "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", - "hot_configurable":true, "description":"Sets the maximum number of temporary - buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, - "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", - "default_value":"-1", "hot_configurable":false, "description":"Limits the total - size of all temporary files used by each session.", "property_type":"INT", "unit":null, - "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, - "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, - "description":"This option sets the global timezone system variable.", "property_type":"STRING", - "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -1546,7 +1749,7 @@ interactions: {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets the maximum memory to be used for query workspaces.", "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, - "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, "description":"Background writer sleep time between rounds.", "property_type":"INT", @@ -1647,7 +1850,10 @@ interactions: "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", "default_value":"1024", "hot_configurable":false, "description":"Sets the size reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, - "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", @@ -1880,14 +2086,16 @@ interactions: "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], "region":"fr-par"}], "total_count":2}' headers: + Content-Length: + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:05:50 GMT + - Tue, 07 Jan 2025 14:16:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1895,7 +2103,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dbecabe-7223-4d5d-af37-a0b0effad588 + - 3696bf47-308f-48e9-a6af-bc4cd9030064 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.cassette.yaml index d4ab07257..40d78381f 100644 --- a/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.cassette.yaml @@ -2,50 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:24 GMT + - Tue, 07 Jan 2025 13:46:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fafd2b7-3a98-4bcb-b141-1b67f4b60a94 + - fed98144-128d-4b9c-9a45-53ee55a51d8a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:24 GMT + - Tue, 07 Jan 2025 13:46:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 774ceb01-2b34-49ca-a9c8-6f4d3eb2731c + - 5bdf532b-1c79-439e-a689-5b2ec6240102 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:39 GMT + - Tue, 07 Jan 2025 13:46:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68b7e5ee-8b28-4ba7-aa36-8c1df46af815 + - 5919be0a-1325-4296-8cbf-2be9ef56183e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:55 GMT + - Tue, 07 Jan 2025 13:46:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6c5ff28-54e3-40dc-ad25-aceb25929078 + - ab012078-4c24-4471-997c-59ed87d5f492 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:14:10 GMT + - Tue, 07 Jan 2025 13:47:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25b1a863-62f9-455f-afeb-b058e47be284 + - dbf46b1f-c173-4ce8-8c0f-b77164637b9f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:14:25 GMT + - Tue, 07 Jan 2025 13:47:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba51bae5-c74f-4bb9-8dac-ceb5b78f06ee + - 99da56a1-252b-40aa-b6a0-88d946ad6b1b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:14:40 GMT + - Tue, 07 Jan 2025 13:47:35 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d43cd0a-10f5-4bf6-bd19-87cd69aa4492 + - ae52a62a-db81-40c8-9023-8962c76ae426 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:14:57 GMT + - Tue, 07 Jan 2025 13:47:50 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e509cab-04cf-42f6-bf69-478aa65f2750 + - 7a722948-b9b0-41e4-b6c0-e2e61297b39a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:15:13 GMT + - Tue, 07 Jan 2025 13:48:05 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +431,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9047788b-033f-46ec-891f-5f457657532f + - 8cc2b2bf-c0cd-4eb7-b362-fd1a9ce5671a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:15:28 GMT + - Tue, 07 Jan 2025 13:48:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +479,197 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b5013fd-f48b-45f2-9186-9eeebb48af19 + - c0690c3c-6c01-479f-93fd-da9b7eecb075 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:48:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53974889-bba9-428c-a36a-20e559922003 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d + method: GET + response: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:48:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31bcfb4d-1a85-4528-b2e1-3048942f60e8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d + method: GET + response: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:49:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42637f02-4b43-45b7-9905-6de832e6d966 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d + method: GET + response: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:15:43 GMT + - Tue, 07 Jan 2025 13:49:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,63 +677,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2208de07-c04a-4abd-8dc4-bb70f486193c + - 42ce9610-9f6b-4482-bf9f-1eb20c2ff1fa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":14607, "name":null, "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":14607, "name":null, - "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d + method: GET + response: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:46:18.782727Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:49:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fb30de5a-8999-4423-99b1-25f85c1cde98 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:46:18.782727Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: GET response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":14607, "name":null, "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":14607, "name":null, - "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:46:18.782727Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:16:01 GMT + - Tue, 07 Jan 2025 13:49:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -657,27 +791,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24c5e22f-4582-49d2-ae6c-191c3e965bb9 + - afd39bb1-bd34-4670-81aa-59f61266fe6d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups method: POST response: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -687,9 +821,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:01 GMT + - Tue, 07 Jan 2025 13:50:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -697,25 +831,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84dfaa40-bfe5-40b9-ac0f-c03424e1f249 + - 44fc2565-a167-4173-a84b-023b4d7ea2a3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/f3e15b2d-ac65-413d-a027-8c63cf1bf674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6ff8e642-746b-499c-ba18-6491caeb64a2 method: GET response: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -725,9 +859,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:01 GMT + - Tue, 07 Jan 2025 13:50:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -735,26 +869,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2997625-6e32-45a9-84d4-4a1c9604bc31 + - 44717f4a-172f-4d15-99ee-10fc4d6b7976 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/f3e15b2d-ac65-413d-a027-8c63cf1bf674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6ff8e642-746b-499c-ba18-6491caeb64a2 method: GET response: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -765,9 +899,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:16 GMT + - Tue, 07 Jan 2025 13:51:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -775,14 +909,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e231169f-4351-433d-b581-8f87bcb247f4 + - 5ee6cd24-5d98-4801-98bc-277ad8b670c8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} @@ -790,13 +924,13 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/f3e15b2d-ac65-413d-a027-8c63cf1bf674/export + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6ff8e642-746b-499c-ba18-6491caeb64a2/export method: POST response: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -807,9 +941,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:17 GMT + - Tue, 07 Jan 2025 13:51:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,26 +951,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc251409-c4ae-4549-9f92-90e09690ae1e + - fdefeb9d-7171-4d27-b755-b10decafe30d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/f3e15b2d-ac65-413d-a027-8c63cf1bf674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6ff8e642-746b-499c-ba18-6491caeb64a2 method: GET response: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"exporting", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -847,9 +981,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:17 GMT + - Tue, 07 Jan 2025 13:51:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -857,29 +991,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a9a166d-d89d-4d3f-afcc-a598d5dd1655 + - 814b63d1-4cb2-432e-9ce6-aff86f8e7a0c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", - "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/0e434676-e0c1-476e-963f-cda4bae23b33/f3e15b2d-ac65-413d-a027-8c63cf1bf674.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T191717Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=44ba03c3e09d75780222bd3b15feebc62c50f5d890196aa1d3e0e3c84f9aa385", - "download_url_expires_at":"2023-11-10T19:17:17.819621Z", "same_region":false, + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", + "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/63d450e6-4009-4553-a04b-4396ef2d8d5d/6ff8e642-746b-499c-ba18-6491caeb64a2.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250107T135108Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=197c6051bdff4df29a1be2a295a5280a3eca929d81455084322fe0755979aeb0", + "download_url_expires_at":"2025-01-08T13:51:08.142914Z", "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/f3e15b2d-ac65-413d-a027-8c63cf1bf674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6ff8e642-746b-499c-ba18-6491caeb64a2 method: GET response: - body: '{"id":"f3e15b2d-ac65-413d-a027-8c63cf1bf674", "instance_id":"0e434676-e0c1-476e-963f-cda4bae23b33", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:17:01.566780Z", "updated_at":"2023-11-09T19:17:03.314036Z", - "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/0e434676-e0c1-476e-963f-cda4bae23b33/f3e15b2d-ac65-413d-a027-8c63cf1bf674.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T191717Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=44ba03c3e09d75780222bd3b15feebc62c50f5d890196aa1d3e0e3c84f9aa385", - "download_url_expires_at":"2023-11-10T19:17:17.819621Z", "same_region":false, + body: '{"id":"6ff8e642-746b-499c-ba18-6491caeb64a2", "instance_id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:50:51.915074Z", "updated_at":"2025-01-07T13:50:53.956872Z", + "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/63d450e6-4009-4553-a04b-4396ef2d8d5d/6ff8e642-746b-499c-ba18-6491caeb64a2.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250107T135108Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=197c6051bdff4df29a1be2a295a5280a3eca929d81455084322fe0755979aeb0", + "download_url_expires_at":"2025-01-08T13:51:08.142914Z", "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -889,9 +1023,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:32 GMT + - Tue, 07 Jan 2025 13:51:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,63 +1033,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc798e8f-8605-4040-8e46-1c8520b479a3 + - 99228e4f-174e-49c8-bac7-2fa02ffd1806 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":14607, "name":null, "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":14607, "name":null, - "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:46:18.782727Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0e434676-e0c1-476e-963f-cda4bae23b33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/63d450e6-4009-4553-a04b-4396ef2d8d5d method: DELETE response: - body: '{"id":"0e434676-e0c1-476e-963f-cda4bae23b33", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":14607, "name":null, "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"63d450e6-4009-4553-a04b-4396ef2d8d5d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:13:24.402566Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:46:18.782727Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":14607, "name":null, - "id":"96c8d69c-cdc0-436e-8b9c-efa3de9baadb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":9788, "name":null, + "id":"8b97dad1-916c-4da1-ac3f-cf22c9b85d8a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:13:24.402566Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:46:18.782727Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:17:32 GMT + - Tue, 07 Jan 2025 13:51:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -963,7 +1093,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26830e53-a868-4de2-b81c-5312c1853e47 + - ae8906ee-6fd7-494a-9870-27ead0a2981e status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.golden b/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.golden index 7e0182bea..aa25eaeac 100644 --- a/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-export-backup-simple.golden @@ -1,7 +1,7 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID f3e15b2d-ac65-413d-a027-8c63cf1bf674 -InstanceID 0e434676-e0c1-476e-963f-cda4bae23b33 +ID 6ff8e642-746b-499c-ba18-6491caeb64a2 +InstanceID 63d450e6-4009-4553-a04b-4396ef2d8d5d DatabaseName rdb Name foobar Status ready @@ -10,23 +10,23 @@ ExpiresAt few seconds ago CreatedAt few seconds ago UpdatedAt few seconds ago InstanceName cli-test -DownloadURL https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/0e434676-e0c1-476e-963f-cda4bae23b33/f3e15b2d-ac65-413d-a027-8c63cf1bf674.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T191717Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=44ba03c3e09d75780222bd3b15feebc62c50f5d890196aa1d3e0e3c84f9aa385 +DownloadURL https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/63d450e6-4009-4553-a04b-4396ef2d8d5d/6ff8e642-746b-499c-ba18-6491caeb64a2.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250107T135108Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=197c6051bdff4df29a1be2a295a5280a3eca929d81455084322fe0755979aeb0 DownloadURLExpiresAt few seconds ago Region fr-par SameRegion false 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "f3e15b2d-ac65-413d-a027-8c63cf1bf674", - "instance_id": "0e434676-e0c1-476e-963f-cda4bae23b33", + "id": "6ff8e642-746b-499c-ba18-6491caeb64a2", + "instance_id": "63d450e6-4009-4553-a04b-4396ef2d8d5d", "database_name": "rdb", "name": "foobar", "status": "ready", - "size": 2107, + "size": 2104, "expires_at": "2032-01-02T22:04:05Z", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", "instance_name": "cli-test", - "download_url": "https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/0e434676-e0c1-476e-963f-cda4bae23b33/f3e15b2d-ac65-413d-a027-8c63cf1bf674.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request\u0026X-Amz-Date=20231109T191717Z\u0026X-Amz-Expires=86400\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=44ba03c3e09d75780222bd3b15feebc62c50f5d890196aa1d3e0e3c84f9aa385", + "download_url": "https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/63d450e6-4009-4553-a04b-4396ef2d8d5d/6ff8e642-746b-499c-ba18-6491caeb64a2.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256\u0026X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250107%2Fnl-ams%2Fs3%2Faws4_request\u0026X-Amz-Date=20250107T135108Z\u0026X-Amz-Expires=86400\u0026X-Amz-SignedHeaders=host\u0026X-Amz-Signature=197c6051bdff4df29a1be2a295a5280a3eca929d81455084322fe0755979aeb0", "download_url_expires_at": "1970-01-01T00:00:00.0Z", "region": "fr-par", "same_region": false diff --git a/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.cassette.yaml index 8a1ba1997..09eaab63a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:35:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b8a6ce3-3b7a-4513-b0b0-8f98165923a6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:08:33 GMT + - Tue, 07 Jan 2025 14:35:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81366779-961d-4837-98a3-5b0fbf23b914 + - 00476a7c-73e4-4bfd-aa60-385b027e54a8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:08:33 GMT + - Tue, 07 Jan 2025 14:35:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2632fa12-e42f-4ea6-9a42-27652cc0f40a + - c2e4be80-8c1c-48c2-8bfe-64c4c9a64e38 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:08:49 GMT + - Tue, 07 Jan 2025 14:35:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89c2816b-4385-4283-b2c0-83a2505e9591 + - d29b896c-80b2-4c81-ad2e-c28138e5b4bf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:09:04 GMT + - Tue, 07 Jan 2025 14:35:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca2642d9-b3b6-4e3a-b56d-8058338e4316 + - 0b8025c5-4893-460f-8a71-2b5a4a70c7bb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:09:20 GMT + - Tue, 07 Jan 2025 14:36:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9dc9540-3c08-4d08-8863-ddab586b6047 + - 2f3a8994-1b8f-422e-b9a0-6cbed3409cd8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:09:35 GMT + - Tue, 07 Jan 2025 14:36:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9b74b20-ffd0-4b46-abc2-de1d64960dfa + - ecf5e70d-e90a-4a86-811f-de74d977a919 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:09:50 GMT + - Tue, 07 Jan 2025 14:36:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68b093e-f5bb-4eb3-addb-f71fd81cbc77 + - 92464f26-de73-4683-a712-8a4c8d0dbfcb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:10:05 GMT + - Tue, 07 Jan 2025 14:36:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b6a2561-a18b-4ed0-8921-ba174f7f5e3a + - f15d09c1-f494-47d5-8e73-42c4d12a93d9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:10:20 GMT + - Tue, 07 Jan 2025 14:37:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31b1e7ef-10eb-4d80-8734-3769cdc00f3c + - 0187154f-5fc7-470e-bac2-5926f51ba333 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:10:36 GMT + - Tue, 07 Jan 2025 14:37:16 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bd16601-af21-4b61-96a6-6be6828fa943 + - 54ebf3d2-cd3c-4c29-84af-ec44deaf8920 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:10:51 GMT + - Tue, 07 Jan 2025 14:37:31 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2639,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55354e6d-a807-4de3-86ad-5949a0295645 + - c14931aa-5d67-4288-ab3e-f13874b33cae status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-09T11:08:33.165804Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-09T11:08:33.165804Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:35:14.782523Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:11:06 GMT + - Tue, 07 Jan 2025 14:37:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,63 +2693,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d77240-172b-4173-acbc-ce7d220f8c26 + - 6ecb1505-3eaa-4bfd-b5bc-c74e702d29c9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.58.219", - "port":10495, "name":null, "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.58.219", "port":10495, "name":null, - "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:35:14.782523Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.58.219", - "port":10495, "name":null, "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.58.219", "port":10495, "name":null, - "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:35:14.782523Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:11:21 GMT + - Tue, 07 Jan 2025 14:38:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -717,63 +2753,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9f063b4-0598-4dc1-acb8-926d177f1826 + - d11d7ff8-3dac-47d8-83db-ecf86f6edaa1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.58.219", - "port":10495, "name":null, "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.58.219", "port":10495, "name":null, - "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:35:14.782523Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: GET response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.58.219", - "port":10495, "name":null, "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.58.219", "port":10495, "name":null, - "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:35:14.782523Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:11:22 GMT + - Tue, 07 Jan 2025 14:38:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -781,21 +2813,21 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e9e1f3e-ed01-445a-b3f8-2a3ea631356e + - 61c418b0-b932-45e0-bda1-204b41090a6d status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":10495, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":27851, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c/acls?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd/acls?page=1 method: GET response: - body: '{"rules":[{"ip":"0.0.0.0/0", "port":10495, "protocol":"tcp", "direction":"inbound", + body: '{"rules":[{"ip":"0.0.0.0/0", "port":27851, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow All"}], "total_count":1}' headers: Content-Length: @@ -805,9 +2837,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:11:22 GMT + - Tue, 07 Jan 2025 14:38:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -815,63 +2847,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed69b79c-d160-4340-87ce-7bfe51407621 + - 476faa28-c6af-4e7c-87dc-be4c5d0d69b0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.58.219", - "port":10495, "name":null, "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.58.219", "port":10495, "name":null, - "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:35:14.782523Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd243660-af1e-45f6-9f04-0c6fdf22ce6c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd method: DELETE response: - body: '{"id":"cd243660-af1e-45f6-9f04-0c6fdf22ce6c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.58.219", - "port":10495, "name":null, "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T11:08:33.165804Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:35:14.782523Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.58.219", "port":10495, "name":null, - "id":"ca968a49-bf25-4de3-bb24-e84d04aa7a4b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":27851, "name":null, + "id":"737d3510-55ac-475d-9adc-ab0ddc56a9f6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T11:08:33.165804Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:35:14.782523Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 11:11:30 GMT + - Tue, 07 Jan 2025 14:38:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,7 +2907,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c941e97a-d201-48c8-af60-175aecccdf70 + - 16f24a57-1093-49ea-9cd7-7485aa456a6b status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.golden b/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.golden index 66ae50a34..6070cfb4a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-get-instance-simple.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID cd243660-af1e-45f6-9f04-0c6fdf22ce6c -Name cli-test -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID ca968a49-bf25-4de3-bb24-e84d04aa7a4b -Endpoints.0.IP 51.158.58.219 -Endpoints.0.Port 10495 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd +Name cli-test +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID 737d3510-55ac-475d-9adc-ab0ddc56a9f6 +Endpoints.0.IP 51.159.8.181 +Endpoints.0.Port 27851 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID ca968a49-bf25-4de3-bb24-e84d04aa7a4b -IP 51.158.58.219 -Port 10495 +ID 737d3510-55ac-475d-9adc-ab0ddc56a9f6 +IP 51.159.8.181 +Port 27851 Volume: Type lssd @@ -55,7 +44,7 @@ work_mem 4 ACLs: IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -0.0.0.0/0 10495 tcp inbound allow Allow All +0.0.0.0/0 27851 tcp inbound allow Allow All 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "created_at": "1970-01-01T00:00:00.0Z", @@ -65,36 +54,17 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "class": "lssd" }, "region": "fr-par", - "id": "cd243660-af1e-45f6-9f04-0c6fdf22ce6c", + "id": "ee17644d-8d1c-4fc1-86db-3ad64dd8e2dd", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "ca968a49-bf25-4de3-bb24-e84d04aa7a4b", - "ip": "51.158.58.219", - "port": 10495, + "id": "737d3510-55ac-475d-9adc-ab0ddc56a9f6", + "ip": "51.159.8.181", + "port": 27851, "name": null, "load_balancer": {} }, @@ -137,9 +107,9 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION "init_settings": [], "endpoints": [ { - "id": "ca968a49-bf25-4de3-bb24-e84d04aa7a4b", - "ip": "51.158.58.219", - "port": 10495, + "id": "737d3510-55ac-475d-9adc-ab0ddc56a9f6", + "ip": "51.159.8.181", + "port": 27851, "name": null, "load_balancer": {} } @@ -150,11 +120,13 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, "backup_same_region": false, "maintenances": [], - "encryption": null, + "encryption": { + "enabled": false + }, "acls": [ { "ip": "0.0.0.0/0", - "port": 10495, + "port": 27851, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.cassette.yaml index a159dd4cd..9fc197227 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.cassette.yaml @@ -2,50 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:53 GMT + - Wed, 15 Jan 2025 09:24:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75e97d12-3eb4-4cb3-9f1b-8e2a92868aa0 + - 96fd6879-2199-409d-bdda-880d24bb3014 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:20:54 GMT + - Wed, 15 Jan 2025 09:24:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d22b126-044c-43ec-b47d-335ede1d54bc + - 84d5ad3e-a3b8-42e3-9755-d3d38effe117 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:21:09 GMT + - Wed, 15 Jan 2025 09:24:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c31027e-2053-42e3-b364-555ff32c70b9 + - dd1b2d6f-1892-4a12-89ba-dc58f4b64f51 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:21:24 GMT + - Wed, 15 Jan 2025 09:24:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8267a2b6-ed0e-4b1c-b014-e2d8db9f57b4 + - 763ef4c9-406d-4a50-aafd-e1db10f6dd96 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:21:39 GMT + - Wed, 15 Jan 2025 09:25:09 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49c232bf-1330-438d-9ee2-285cebcc6922 + - b435a4ba-e8cb-4fee-8344-bf850b3042e4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:21:57 GMT + - Wed, 15 Jan 2025 09:25:25 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e37c6c95-bdd5-4a28-8b0e-4223be8b95bd + - a51cf5ed-bdb2-4e1b-ae8b-081a02133ad5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:22:12 GMT + - Wed, 15 Jan 2025 09:25:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3a53f35-c6b6-437b-b667-a3098686a598 + - d7cef15a-735c-4f8c-a291-6c921158b6f9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:22:27 GMT + - Wed, 15 Jan 2025 09:25:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aef8e547-794d-4f7a-9587-92e9744b43e5 + - 3d179777-ca74-4124-9d8a-f252eac1cb8c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:22:43 GMT + - Wed, 15 Jan 2025 09:26:10 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +431,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24dbc1a1-05a0-4885-a028-84ee77755848 + - ea1c9179-2e49-48e3-82e2-bf317066dfe6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Jan 2025 09:26:25 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c6a858e-dc89-4450-8408-978bfbd20098 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc + method: GET + response: + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:00 GMT + - Wed, 15 Jan 2025 09:26:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,59 +527,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c203a753-7ec0-4998-945a-6dbd533de7a8 + - 501272e2-20a3-4e84-ba69-45ae31f18933 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc + method: GET + response: + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Jan 2025 09:26:55 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f93d3f8-ed34-45a9-a4f7-27b3dbd583d1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-09T19:20:53.568041Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-09T19:20:53.568041Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-15T09:24:24.042518Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:15 GMT + - Wed, 15 Jan 2025 09:27:10 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,63 +629,99 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 072c179d-f4fc-4372-9fd6-b40226a8dbed + - e0a3faf8-b1c5-4ed8-a08c-1d794b47fd15 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":23713, "name":null, "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":23713, "name":null, - "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-15T09:24:24.042518Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: GET response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":23713, "name":null, "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":23713, "name":null, - "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-15T09:24:24.042518Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1277" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Jan 2025 09:27:26 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b5d6030-bc16-4346-bb6f-15a196752bcb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"access_key":"SCW7ZEW470JAKP4FHE8E", "secret_key":null, "description":"", + "created_at":"2025-01-07T13:16:21.002236Z", "updated_at":"2025-01-07T13:16:21.002236Z", + "expires_at":null, "default_project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.46.153", + "user_id":"136b6f64-5a92-45d2-9d91-1d45c0c69ff3"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/iam/v1alpha1/api-keys/SCW7ZEW470JAKP4FHE8E + method: GET + response: + body: '{"access_key":"SCW7ZEW470JAKP4FHE8E", "secret_key":null, "description":"", + "created_at":"2025-01-07T13:16:21.002236Z", "updated_at":"2025-01-07T13:16:21.002236Z", + "expires_at":null, "default_project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "editable":true, "deletable":true, "managed":false, "creation_ip":"51.159.46.153", + "user_id":"136b6f64-5a92-45d2-9d91-1d45c0c69ff3"}' headers: Content-Length: - - "1575" + - "375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:30 GMT + - Wed, 15 Jan 2025 09:27:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -663,14 +729,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d93ecc3-da5f-43a4-b025-79d3ae015570 + - 8f022f7b-2c63-4d7c-8228-cd948d1b12ef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} @@ -678,13 +744,13 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups method: POST response: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -695,9 +761,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:31 GMT + - Wed, 15 Jan 2025 09:27:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,26 +771,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d667bbf2-e1e9-43e3-ade3-daa84948eea8 + - aeba754a-d6b0-4bba-ac46-9799019826e3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/4a7d57b2-f92b-4b13-86de-b56e47cad9f5 method: GET response: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -735,9 +801,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:31 GMT + - Wed, 15 Jan 2025 09:27:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -745,27 +811,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa6a3759-336b-43fa-b57a-a68bebdb0941 + - a5511141-330b-4394-8725-85f3451f2060 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/4a7d57b2-f92b-4b13-86de-b56e47cad9f5 method: GET response: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -775,9 +841,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:49 GMT + - Wed, 15 Jan 2025 09:27:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,14 +851,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de05e0d4-16d9-41a1-b5eb-2b5cc81c1db5 + - 6d2862a2-98ff-4ddd-9b96-813857af2aee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_not_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} @@ -800,13 +866,13 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups method: POST response: - body: '{"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_not_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -817,9 +883,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:52 GMT + - Wed, 15 Jan 2025 09:27:43 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -827,26 +893,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a431109-b859-4166-b983-6c45c36cf4d8 + - 4346e14b-5704-4555-a947-17a83c7ffcf1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_not_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/0aab45e7-e1de-493f-807b-4d843f8b383d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/a929798a-28be-4717-b8a7-0c02c088160e method: GET response: - body: '{"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", + body: '{"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name":"rdb", "name":"will_not_be_exported", "status":"creating", "size":null, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -857,9 +923,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:23:52 GMT + - Wed, 15 Jan 2025 09:27:43 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -867,27 +933,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b233b95a-cafd-4ded-aadf-72bf736d5278 + - 9352ce9d-5f40-4e97-9bcd-3f0141a55a6a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", - "updated_at":"2023-11-09T19:23:53.925026Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", + "updated_at":"2025-01-15T09:27:44.972473Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/0aab45e7-e1de-493f-807b-4d843f8b383d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/a929798a-28be-4717-b8a7-0c02c088160e method: GET response: - body: '{"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", - "updated_at":"2023-11-09T19:23:53.925026Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", + "updated_at":"2025-01-15T09:27:44.972473Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -897,9 +963,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:24:07 GMT + - Wed, 15 Jan 2025 09:27:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -907,29 +973,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0493ccb6-22c5-41c9-b408-28039d0c7d04 + - db436bf4-02e1-443d-be42-29ddb871a9cf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d/export + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/4a7d57b2-f92b-4b13-86de-b56e47cad9f5/export method: POST response: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -939,9 +1005,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:24:08 GMT + - Wed, 15 Jan 2025 09:27:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -949,27 +1015,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b131308-5773-4063-8938-e20b52754290 + - e512be8c-97f1-415f-94ff-603fd9cb404a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/4a7d57b2-f92b-4b13-86de-b56e47cad9f5 method: GET response: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":null, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"exporting", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -979,9 +1045,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:24:08 GMT + - Wed, 15 Jan 2025 09:27:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,29 +1055,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3647dde1-60bb-4d92-9858-4e7bbf092369 + - 4c50e078-a6c1-4c7e-a946-1c7edf428067 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/1b79dceb-5632-4176-b594-d6a73bfb06e1/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T192408Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=cc0e126290d5bd4dc7fa3db04e5293928a4e311ffa9466a015629361c33361ea", - "download_url_expires_at":"2023-11-10T19:24:08.687616Z", "same_region":false, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/8a25dbba-dac7-49bf-854c-5f1da6a545bc/4a7d57b2-f92b-4b13-86de-b56e47cad9f5.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250115%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250115T092759Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=0f6c256e8cae0558ae5965ec119afd29fea8a77487b6ffd59b8a9773cc9a8242", + "download_url_expires_at":"2025-01-16T09:27:59.436619Z", "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/4a7d57b2-f92b-4b13-86de-b56e47cad9f5 method: GET response: - body: '{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/1b79dceb-5632-4176-b594-d6a73bfb06e1/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T192408Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=cc0e126290d5bd4dc7fa3db04e5293928a4e311ffa9466a015629361c33361ea", - "download_url_expires_at":"2023-11-10T19:24:08.687616Z", "same_region":false, + body: '{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/8a25dbba-dac7-49bf-854c-5f1da6a545bc/4a7d57b2-f92b-4b13-86de-b56e47cad9f5.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250115%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250115T092759Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=0f6c256e8cae0558ae5965ec119afd29fea8a77487b6ffd59b8a9773cc9a8242", + "download_url_expires_at":"2025-01-16T09:27:59.436619Z", "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -1021,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:24:23 GMT + - Wed, 15 Jan 2025 09:28:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1031,37 +1097,37 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81df5027-5097-4337-9715-f4c3126e705f + - daf91fdc-40ef-45db-8801-6f18737f1dbc status: 200 OK code: 200 duration: "" - request: - body: '{"database_backups":[{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/1b79dceb-5632-4176-b594-d6a73bfb06e1/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T192408Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=cc0e126290d5bd4dc7fa3db04e5293928a4e311ffa9466a015629361c33361ea", - "download_url_expires_at":"2023-11-10T19:24:08.687616Z", "same_region":false, - "region":"fr-par"}, {"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", - "updated_at":"2023-11-09T19:23:53.925026Z", "instance_name":"cli-test", "download_url":null, + body: '{"database_backups":[{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/8a25dbba-dac7-49bf-854c-5f1da6a545bc/4a7d57b2-f92b-4b13-86de-b56e47cad9f5.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250115%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250115T092759Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=0f6c256e8cae0558ae5965ec119afd29fea8a77487b6ffd59b8a9773cc9a8242", + "download_url_expires_at":"2025-01-16T09:27:59.436619Z", "same_region":false, + "region":"fr-par"}, {"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", + "updated_at":"2025-01-15T09:27:44.972473Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups?instance_id=1b79dceb-5632-4176-b594-d6a73bfb06e1&order_by=created_at_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups?instance_id=8a25dbba-dac7-49bf-854c-5f1da6a545bc&order_by=created_at_asc&page=1 method: GET response: - body: '{"database_backups":[{"id":"6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:30.994771Z", - "updated_at":"2023-11-09T19:23:32.255134Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/1b79dceb-5632-4176-b594-d6a73bfb06e1/6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20231109%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20231109T192408Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=cc0e126290d5bd4dc7fa3db04e5293928a4e311ffa9466a015629361c33361ea", - "download_url_expires_at":"2023-11-10T19:24:08.687616Z", "same_region":false, - "region":"fr-par"}, {"id":"0aab45e7-e1de-493f-807b-4d843f8b383d", "instance_id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", - "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2107, - "expires_at":"2032-01-02T22:04:05Z", "created_at":"2023-11-09T19:23:51.954670Z", - "updated_at":"2023-11-09T19:23:53.925026Z", "instance_name":"cli-test", "download_url":null, + body: '{"database_backups":[{"id":"4a7d57b2-f92b-4b13-86de-b56e47cad9f5", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:26.515802Z", + "updated_at":"2025-01-15T09:27:29.278517Z", "instance_name":"cli-test", "download_url":"https://s3.nl-ams.scw.cloud/65940610-0e5e-4a98-9306-568aa4eb3673/8a25dbba-dac7-49bf-854c-5f1da6a545bc/4a7d57b2-f92b-4b13-86de-b56e47cad9f5.custom?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=SCW2HJV1WMKPE0CKDAW5%2F20250115%2Fnl-ams%2Fs3%2Faws4_request&X-Amz-Date=20250115T092759Z&X-Amz-Expires=86400&X-Amz-SignedHeaders=host&X-Amz-Signature=0f6c256e8cae0558ae5965ec119afd29fea8a77487b6ffd59b8a9773cc9a8242", + "download_url_expires_at":"2025-01-16T09:27:59.436619Z", "same_region":false, + "region":"fr-par"}, {"id":"a929798a-28be-4717-b8a7-0c02c088160e", "instance_id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", + "database_name":"rdb", "name":"will_not_be_exported", "status":"ready", "size":2106, + "expires_at":"2032-01-02T22:04:05Z", "created_at":"2025-01-15T09:27:42.497451Z", + "updated_at":"2025-01-15T09:27:44.972473Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}], "total_count":2}' headers: Content-Length: @@ -1071,9 +1137,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:24:23 GMT + - Wed, 15 Jan 2025 09:28:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,63 +1147,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a1e8d43-1665-4836-af08-d280a56093e4 + - 4581f8f4-4973-4d4b-86e8-64124daf63f7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":23713, "name":null, "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":23713, "name":null, - "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-15T09:24:24.042518Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/1b79dceb-5632-4176-b594-d6a73bfb06e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/8a25dbba-dac7-49bf-854c-5f1da6a545bc method: DELETE response: - body: '{"id":"1b79dceb-5632-4176-b594-d6a73bfb06e1", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":23713, "name":null, "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"8a25dbba-dac7-49bf-854c-5f1da6a545bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:20:53.568041Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-16T09:24:24.042518Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":23713, "name":null, - "id":"321703e2-f557-4f59-aa14-6c2e965bbd41", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.114.224", "port":22958, "name":null, + "id":"5edbe668-7133-4aec-bb52-43e34d1aa991", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:20:53.568041Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-15T09:24:24.042518Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:24:23 GMT + - Wed, 15 Jan 2025 09:28:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-1;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,7 +1207,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 955e2c09-4651-4181-a081-48dc1dfb915c + - 6cb8f8e7-335c-49d2-b170-8ff83beb5e9c status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.golden b/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.golden index a8ce60037..09a53fbb8 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-list-backup-simple.golden @@ -1,33 +1,33 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ ID Name Database Name Size Status Instance ID URL Expired Is Exported Expires At Created At Updated At Region Same Region -6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d will_be_exported rdb 2.1 kB ready 1b79dceb-5632-4176-b594-d6a73bfb06e1 true true few seconds ago few seconds ago few seconds ago fr-par false -0aab45e7-e1de-493f-807b-4d843f8b383d will_not_be_exported rdb 2.1 kB ready 1b79dceb-5632-4176-b594-d6a73bfb06e1 true false few seconds ago few seconds ago few seconds ago fr-par false +4a7d57b2-f92b-4b13-86de-b56e47cad9f5 will_be_exported rdb 2.1 kB ready 8a25dbba-dac7-49bf-854c-5f1da6a545bc false true few seconds ago few seconds ago few seconds ago fr-par false +a929798a-28be-4717-b8a7-0c02c088160e will_not_be_exported rdb 2.1 kB ready 8a25dbba-dac7-49bf-854c-5f1da6a545bc true false few seconds ago few seconds ago few seconds ago fr-par false 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { - "ID": "6d576d04-9dc3-4081-8c3f-ab16d4bd2b3d", - "instance_ID": "1b79dceb-5632-4176-b594-d6a73bfb06e1", + "ID": "4a7d57b2-f92b-4b13-86de-b56e47cad9f5", + "instance_ID": "8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name": "rdb", "name": "will_be_exported", "status": "ready", - "size": 2107, + "size": 2106, "expires_at": "2032-01-02T22:04:05Z", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", "instance_name": "cli-test", "is_exported": true, - "url_expired": true, + "url_expired": false, "region": "fr-par", "same_region": false }, { - "ID": "0aab45e7-e1de-493f-807b-4d843f8b383d", - "instance_ID": "1b79dceb-5632-4176-b594-d6a73bfb06e1", + "ID": "a929798a-28be-4717-b8a7-0c02c088160e", + "instance_ID": "8a25dbba-dac7-49bf-854c-5f1da6a545bc", "database_name": "rdb", "name": "will_not_be_exported", "status": "ready", - "size": 2107, + "size": 2106, "expires_at": "2032-01-02T22:04:05Z", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", diff --git a/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-lowercase.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-lowercase.cassette.yaml index f59d38769..4b3a19f15 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-lowercase.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-lowercase.cassette.yaml @@ -128,7 +128,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines?name=mysql&version=8 method: GET response: @@ -256,14 +256,16 @@ interactions: "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, "float_max":null}]}], "region":"fr-par"}], "total_count":1}' headers: + Content-Length: + - "15235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:05:50 GMT + - Tue, 07 Jan 2025 14:16:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -271,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40453f61-d530-400f-a912-2350d28330d6 + - bb3104a6-f90c-4521-b288-efe55705b73c status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-simple.cassette.yaml index 800faa43f..c376e34fd 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-list-engine-settings-simple.cassette.yaml @@ -128,7 +128,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines?name=MySQL&version=8 method: GET response: @@ -256,14 +256,16 @@ interactions: "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, "float_max":null}]}], "region":"fr-par"}], "total_count":1}' headers: + Content-Length: + - "15235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:05:50 GMT + - Tue, 07 Jan 2025 14:16:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -271,7 +273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f90e42af-232c-4312-a8f1-9c048d4684b0 + - c7b04d8a-059d-40af-af57-e93bddaf0fa4 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.cassette.yaml index 4e61aea01..057d76c3e 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:16:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5676b0e1-fbf8-440c-b61b-e9338bb859d6 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:05:50 GMT + - Tue, 07 Jan 2025 14:16:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b6296fc-c2a9-47d7-acff-402026d67cb5 + - 0f08541d-9f86-4553-ac32-28891cf4dc8f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:05:51 GMT + - Tue, 07 Jan 2025 14:16:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70fc2ec8-8f23-46b0-96ae-0b73fcc015bf + - 702e5c92-1778-4f7c-a272-8bd00d1af3db status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:06:06 GMT + - Tue, 07 Jan 2025 14:16:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a11412f0-87fa-48f2-8a9e-67b87984ddfc + - e07273e0-6828-4baf-a012-01b024f1f9a9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:06:21 GMT + - Tue, 07 Jan 2025 14:16:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bd77fdc-5d74-4acf-b8b5-b40a078ad2e8 + - e3ac0f86-891d-452c-87b4-db38f82ea740 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:06:36 GMT + - Tue, 07 Jan 2025 14:16:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d39f9edc-2499-43a1-a64f-94c9194e0a91 + - acf1b256-6cbb-40a6-be98-c245ababe055 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:06:51 GMT + - Tue, 07 Jan 2025 14:17:09 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e78cd59d-1222-4083-ace5-b33f8abaf977 + - 9478078b-7091-4716-9324-a69c7b327810 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:07:07 GMT + - Tue, 07 Jan 2025 14:17:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33fdfb2f-0365-43be-9704-b76469beabe4 + - 20d20cd7-b577-4661-ab85-039f4fd26990 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:07:22 GMT + - Tue, 07 Jan 2025 14:17:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc7d0023-54e1-4af9-8d92-d37fdc79070c + - d61b5e17-fa2d-43d0-bcdf-f1cf4c1d5a0a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:07:37 GMT + - Tue, 07 Jan 2025 14:17:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3248e01-51af-4763-a1b3-6b1ee51bf64d + - c054d043-5cc3-4271-a6ca-db408922d0bd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:07:53 GMT + - Tue, 07 Jan 2025 14:18:09 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 310071c2-ace3-4d33-99b8-519c01279446 + - 8c9a7466-fbac-42eb-b53d-bfea5a353de4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:08 GMT + - Tue, 07 Jan 2025 14:18:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b645d8e4-eb7f-4c3b-b835-f0dd98129ce6 + - 55fdcfb6-c250-42a8-aa81-7e70d42ca914 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:05:50.702584Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:05:50.702584Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:23 GMT + - Tue, 07 Jan 2025 14:18:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,63 +2681,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50ebcf24-c3c5-4364-bda4-7b2cc774bd53 + - ba0e16b0-1846-4dd3-be75-83cb2ec79444 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":4040, "name":null, "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":4040, "name":null, - "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: GET response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":4040, "name":null, "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":4040, "name":null, - "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' headers: Content-Length: - - "1575" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:38 GMT + - Tue, 07 Jan 2025 14:18:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -717,479 +2729,227 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 247e6bee-2b02-4be2-af92-e2bf3a64a3b3 + - 0abd32d0-9b4d-47c7-9fcb-cc78488821f1 status: 200 OK code: 200 duration: "" - request: - body: '{"instances":[{"id":"f4933c8a-6048-4737-8077-5774448a5566", "name":"cli-test", - "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status":"ready", "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":3042, "name":null, "id":"1e691556-de46-4f7b-9ee2-b0519b20c866", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", - "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T17:07:32.256038Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.149", - "port":3042, "name":null, "id":"1e691556-de46-4f7b-9ee2-b0519b20c866", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T17:07:32.256038Z", "region":"fr-par"}, - {"id":"42ac75b1-f5d5-4d0b-a4e1-d6114a78dfab", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":11695, "name":null, "id":"d152f100-5fa4-4544-ac6e-5d89d8d4217a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:10:24.300829Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":11695, "name":null, - "id":"d152f100-5fa4-4544-ac6e-5d89d8d4217a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:10:24.300829Z", "region":"fr-par"}, {"id":"897ea3fc-a37a-41e1-bb96-bf3298634658", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.196.87", - "port":1817, "name":null, "id":"b41320e3-047b-4ff2-8341-a5e63631d364", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 + method: GET + response: + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:14:55.121484Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.196.87", "port":1817, "name":null, - "id":"b41320e3-047b-4ff2-8341-a5e63631d364", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:14:55.121484Z", "region":"fr-par"}, {"id":"00af8a0b-2972-49f4-8b7c-171436e2ab8b", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.61", - "port":1771, "name":null, "id":"51c1a9fd-0a7b-4418-a957-4623d4d97512", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:19:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc74e4ac-ce5f-415e-b013-44557a02fd86 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:18:08.923850Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.61", "port":1771, "name":null, - "id":"51c1a9fd-0a7b-4418-a957-4623d4d97512", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:18:08.923850Z", "region":"fr-par"}, {"id":"38b68cf2-4d3e-491c-a899-e9867e141e8f", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":20758, "name":null, "id":"c8c20158-0e0f-49f8-9e9e-0431c94e4b9e", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 + method: GET + response: + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:21:28.126774Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.149", "port":20758, "name":null, - "id":"c8c20158-0e0f-49f8-9e9e-0431c94e4b9e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:21:28.126774Z", "region":"fr-par"}, {"id":"08c9a179-75c0-4ef9-9901-9634e089bf9b", - "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status":"ready", "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.10.213", - "port":12504, "name":null, "id":"cd4e2e54-d546-47a0-8b54-2101819af70b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:16:08.122094Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:19:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1dd7e11-a2d4-4e16-a658-4ba6cb9ebdf2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:30:03.832553Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.10.213", "port":12504, "name":null, - "id":"cd4e2e54-d546-47a0-8b54-2101819af70b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:30:03.832553Z", "region":"fr-par"}, {"id":"f7bef9f1-e8b8-419c-8882-023e7f16742d", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":3415, "name":null, "id":"8e033b82-8d00-40b5-a1e2-c17771b658a2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", - "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T20:48:57.510169Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":3415, "name":null, "id":"8e033b82-8d00-40b5-a1e2-c17771b658a2", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T20:48:57.510169Z", "region":"fr-par"}, - {"id":"0ce5ead3-056f-4eed-a0af-74161355346a", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.56.109", - "port":23224, "name":null, "id":"f87cd3d2-8000-4168-9e88-b05571669ad8", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", - "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:48:58.338684Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.56.109", "port":23224, "name":null, - "id":"f87cd3d2-8000-4168-9e88-b05571669ad8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:48:58.338684Z", "region":"fr-par"}, {"id":"7a3da0cf-a81b-412f-941f-dd23dbd9e739", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":27839, "name":null, "id":"454bcc76-4e87-4ca6-a727-81404620a0dc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:49:01.086069Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.149", "port":27839, "name":null, - "id":"454bcc76-4e87-4ca6-a727-81404620a0dc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:49:01.086069Z", "region":"fr-par"}, {"id":"d33a7dd3-d4d9-463f-a31e-ce887630df99", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":15773, "name":null, "id":"f89bd777-a8f3-4da7-9ed5-0260d55912b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:16:08.122094Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 + method: GET + response: + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:52:53.309743Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.149", "port":15773, "name":null, - "id":"f89bd777-a8f3-4da7-9ed5-0260d55912b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:52:53.309743Z", "region":"fr-par"}, {"id":"bcdd21bc-d8e8-4e44-9550-e8f98e5951f8", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":28228, "name":null, - "id":"008d9143-6b03-4762-9205-07e2a4e908b7", "load_balancer":{}}, "tags":[], - "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T20:52:53.387445Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":28228, "name":null, "id":"008d9143-6b03-4762-9205-07e2a4e908b7", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T20:52:53.387445Z", "region":"fr-par"}, - {"id":"40d840c4-1048-4af7-a474-7c5262412a0c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-14", - "upgradable_version":[{"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", "name":"PostgreSQL-15", - "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":5740, "name":null, "id":"59badc7c-334d-45ee-8aed-d6927cd26753", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:52:54.621103Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f7e42a21-04ef-4388-8a83-49fbb7a373b6", "private_network":{"private_network_id":"20a8842e-1e39-4250-8bd3-d61686c6f59a", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1"}}, {"ip":"195.154.197.149", - "port":5740, "name":null, "id":"59badc7c-334d-45ee-8aed-d6927cd26753", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T20:52:54.621103Z", "region":"fr-par"}, - {"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":4040, "name":null, "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}, + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:16:08.122094Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1275" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:19:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14c29546-e91d-4581-9a28-95bfd79b74fb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"instances":[{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", + "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":21189, "name":null, "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":4040, "name":null, - "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}, {"id":"f9d08c90-d2ec-4f48-9e03-cb88824aa767", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:06:38.080824Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:06:38.080824Z", "region":"fr-par"}], "total_count":14}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:16:08.122094Z", + "region":"fr-par"}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances?order_by=created_at_asc&page=1 method: GET response: - body: '{"instances":[{"id":"f4933c8a-6048-4737-8077-5774448a5566", "name":"cli-test", - "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status":"ready", "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":3042, "name":null, "id":"1e691556-de46-4f7b-9ee2-b0519b20c866", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", - "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T17:07:32.256038Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.149", - "port":3042, "name":null, "id":"1e691556-de46-4f7b-9ee2-b0519b20c866", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T17:07:32.256038Z", "region":"fr-par"}, - {"id":"42ac75b1-f5d5-4d0b-a4e1-d6114a78dfab", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":11695, "name":null, "id":"d152f100-5fa4-4544-ac6e-5d89d8d4217a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:10:24.300829Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":11695, "name":null, - "id":"d152f100-5fa4-4544-ac6e-5d89d8d4217a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:10:24.300829Z", "region":"fr-par"}, {"id":"897ea3fc-a37a-41e1-bb96-bf3298634658", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.196.87", - "port":1817, "name":null, "id":"b41320e3-047b-4ff2-8341-a5e63631d364", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:14:55.121484Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.196.87", "port":1817, "name":null, - "id":"b41320e3-047b-4ff2-8341-a5e63631d364", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:14:55.121484Z", "region":"fr-par"}, {"id":"00af8a0b-2972-49f4-8b7c-171436e2ab8b", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.61", - "port":1771, "name":null, "id":"51c1a9fd-0a7b-4418-a957-4623d4d97512", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:18:08.923850Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.61", "port":1771, "name":null, - "id":"51c1a9fd-0a7b-4418-a957-4623d4d97512", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:18:08.923850Z", "region":"fr-par"}, {"id":"38b68cf2-4d3e-491c-a899-e9867e141e8f", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":20758, "name":null, "id":"c8c20158-0e0f-49f8-9e9e-0431c94e4b9e", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:21:28.126774Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.149", "port":20758, "name":null, - "id":"c8c20158-0e0f-49f8-9e9e-0431c94e4b9e", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:21:28.126774Z", "region":"fr-par"}, {"id":"08c9a179-75c0-4ef9-9901-9634e089bf9b", - "name":"foobar", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status":"ready", "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.10.213", - "port":12504, "name":null, "id":"cd4e2e54-d546-47a0-8b54-2101819af70b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:30:03.832553Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.10.213", "port":12504, "name":null, - "id":"cd4e2e54-d546-47a0-8b54-2101819af70b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:30:03.832553Z", "region":"fr-par"}, {"id":"f7bef9f1-e8b8-419c-8882-023e7f16742d", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":3415, "name":null, "id":"8e033b82-8d00-40b5-a1e2-c17771b658a2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", - "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T20:48:57.510169Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":3415, "name":null, "id":"8e033b82-8d00-40b5-a1e2-c17771b658a2", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T20:48:57.510169Z", "region":"fr-par"}, - {"id":"0ce5ead3-056f-4eed-a0af-74161355346a", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.56.109", - "port":23224, "name":null, "id":"f87cd3d2-8000-4168-9e88-b05571669ad8", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", - "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:48:58.338684Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.56.109", "port":23224, "name":null, - "id":"f87cd3d2-8000-4168-9e88-b05571669ad8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:48:58.338684Z", "region":"fr-par"}, {"id":"7a3da0cf-a81b-412f-941f-dd23dbd9e739", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":27839, "name":null, "id":"454bcc76-4e87-4ca6-a727-81404620a0dc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:49:01.086069Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.149", "port":27839, "name":null, - "id":"454bcc76-4e87-4ca6-a727-81404620a0dc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:49:01.086069Z", "region":"fr-par"}, {"id":"d33a7dd3-d4d9-463f-a31e-ce887630df99", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":15773, "name":null, "id":"f89bd777-a8f3-4da7-9ed5-0260d55912b7", "load_balancer":{}}, + body: '{"instances":[{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", + "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "status":"ready", "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":21189, "name":null, "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:52:53.309743Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.149", "port":15773, "name":null, - "id":"f89bd777-a8f3-4da7-9ed5-0260d55912b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T20:52:53.309743Z", "region":"fr-par"}, {"id":"bcdd21bc-d8e8-4e44-9550-e8f98e5951f8", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.204.209", "port":28228, "name":null, - "id":"008d9143-6b03-4762-9205-07e2a4e908b7", "load_balancer":{}}, "tags":[], - "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T20:52:53.387445Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.204.209", - "port":28228, "name":null, "id":"008d9143-6b03-4762-9205-07e2a4e908b7", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T20:52:53.387445Z", "region":"fr-par"}, - {"id":"40d840c4-1048-4af7-a474-7c5262412a0c", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-14", - "upgradable_version":[{"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", "name":"PostgreSQL-15", - "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.149", - "port":5740, "name":null, "id":"59badc7c-334d-45ee-8aed-d6927cd26753", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T20:52:54.621103Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"172.16.0.3", "port":5432, "name":null, - "id":"f7e42a21-04ef-4388-8a83-49fbb7a373b6", "private_network":{"private_network_id":"20a8842e-1e39-4250-8bd3-d61686c6f59a", - "service_ip":"172.16.0.3/22", "zone":"fr-par-1"}}, {"ip":"195.154.197.149", - "port":5740, "name":null, "id":"59badc7c-334d-45ee-8aed-d6927cd26753", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T20:52:54.621103Z", "region":"fr-par"}, - {"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":4040, "name":null, "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":4040, "name":null, - "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}, {"id":"f9d08c90-d2ec-4f48-9e03-cb88824aa767", - "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:06:38.080824Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:06:38.080824Z", "region":"fr-par"}], "total_count":14}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:16:08.122094Z", + "region":"fr-par"}], "total_count":1}' headers: + Content-Length: + - "1308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:39 GMT + - Tue, 07 Jan 2025 14:19:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,63 +2957,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85c3d49f-14da-4cb1-a05b-23d3e7071ac7 + - 2428f0c5-6dc0-4fd2-8a5b-0e9b47696a7e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":4040, "name":null, "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":4040, "name":null, - "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:16:08.122094Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/675bd3aa-b830-42ca-be29-a8970898d7f2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c71b4866-d96c-453e-919a-687f7cd1b350 method: DELETE response: - body: '{"id":"675bd3aa-b830-42ca-be29-a8970898d7f2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":4040, "name":null, "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c71b4866-d96c-453e-919a-687f7cd1b350", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:05:50.702584Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:16:08.122094Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":4040, "name":null, - "id":"8d944bed-3f50-4865-9a9c-f0f681af7acc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":21189, "name":null, + "id":"56e0207e-7ed1-486a-a5ac-f3d23ce91bda", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:05:50.702584Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:16:08.122094Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:08:39 GMT + - Tue, 07 Jan 2025 14:19:40 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1261,7 +3017,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a2da7a8-50ad-4cf8-a1f9-d2b100fc7110 + - de5e6bc8-9583-4192-8178-01f08722459a status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.golden b/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.golden index 6a519d0dc..fbea99d13 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-list-instance-simple.golden @@ -1,20 +1,7 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID NAME NODE TYPE STATUS ENGINE REGION TAGS IS HA CLUSTER BACKUP SCHEDULE CREATED AT -f4933c8a-6048-4737-8077-5774448a5566 cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -42ac75b1-f5d5-4d0b-a4e1-d6114a78dfab cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -897ea3fc-a37a-41e1-bb96-bf3298634658 cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -00af8a0b-2972-49f4-8b7c-171436e2ab8b cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -38b68cf2-4d3e-491c-a899-e9867e141e8f cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -08c9a179-75c0-4ef9-9901-9634e089bf9b foobar db-dev-m ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -f7bef9f1-e8b8-419c-8882-023e7f16742d cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -0ce5ead3-056f-4eed-a0af-74161355346a foo2 db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -7a3da0cf-a81b-412f-941f-dd23dbd9e739 cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -d33a7dd3-d4d9-463f-a31e-ce887630df99 cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -bcdd21bc-d8e8-4e44-9550-e8f98e5951f8 cli-test db-dev-s ready MySQL-8 fr-par [] false Enabled few seconds ago -40d840c4-1048-4af7-a474-7c5262412a0c cli-test db-dev-s ready PostgreSQL-14 fr-par [] false Enabled few seconds ago -675bd3aa-b830-42ca-be29-a8970898d7f2 cli-test db-dev-s ready PostgreSQL-12 fr-par [] false Enabled few seconds ago -f9d08c90-d2ec-4f48-9e03-cb88824aa767 cli-test db-dev-s initialized PostgreSQL-12 fr-par [] false Enabled few seconds ago +ID NAME NODE TYPE STATUS ENGINE REGION TAGS IS HA CLUSTER BACKUP SCHEDULE CREATED AT +c71b4866-d96c-453e-919a-687f7cd1b350 cli-test db-dev-s ready PostgreSQL-15 fr-par [] false Enabled few seconds ago 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 [ { @@ -25,1145 +12,17 @@ f9d08c90-d2ec-4f48-9e03-cb88824aa767 cli-test db-dev-s initialized PostgreS "class": "lssd" }, "region": "fr-par", - "id": "f4933c8a-6048-4737-8077-5774448a5566", + "id": "c71b4866-d96c-453e-919a-687f7cd1b350", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "1e691556-de46-4f7b-9ee2-b0519b20c866", - "ip": "195.154.197.149", - "port": 3042, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "timezone", - "value": "UTC" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "1e691556-de46-4f7b-9ee2-b0519b20c866", - "ip": "195.154.197.149", - "port": 3042, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "42ac75b1-f5d5-4d0b-a4e1-d6114a78dfab", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "d152f100-5fa4-4544-ac6e-5d89d8d4217a", - "ip": "51.158.57.216", - "port": 11695, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "d152f100-5fa4-4544-ac6e-5d89d8d4217a", - "ip": "51.158.57.216", - "port": 11695, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "897ea3fc-a37a-41e1-bb96-bf3298634658", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "b41320e3-047b-4ff2-8341-a5e63631d364", - "ip": "195.154.196.87", - "port": 1817, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "b41320e3-047b-4ff2-8341-a5e63631d364", - "ip": "195.154.196.87", - "port": 1817, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "00af8a0b-2972-49f4-8b7c-171436e2ab8b", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "51c1a9fd-0a7b-4418-a957-4623d4d97512", - "ip": "195.154.70.61", - "port": 1771, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "51c1a9fd-0a7b-4418-a957-4623d4d97512", - "ip": "195.154.70.61", - "port": 1771, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "38b68cf2-4d3e-491c-a899-e9867e141e8f", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "c8c20158-0e0f-49f8-9e9e-0431c94e4b9e", - "ip": "195.154.197.149", - "port": 20758, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "c8c20158-0e0f-49f8-9e9e-0431c94e4b9e", - "ip": "195.154.197.149", - "port": 20758, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 25000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "08c9a179-75c0-4ef9-9901-9634e089bf9b", - "name": "foobar", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "cd4e2e54-d546-47a0-8b54-2101819af70b", - "ip": "51.159.10.213", - "port": 12504, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-m", - "init_settings": [], - "endpoints": [ - { - "id": "cd4e2e54-d546-47a0-8b54-2101819af70b", - "ip": "51.159.10.213", - "port": 12504, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "f7bef9f1-e8b8-419c-8882-023e7f16742d", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "8e033b82-8d00-40b5-a1e2-c17771b658a2", - "ip": "51.159.204.209", - "port": 3415, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "timezone", - "value": "UTC" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "8e033b82-8d00-40b5-a1e2-c17771b658a2", - "ip": "51.159.204.209", - "port": 3415, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "0ce5ead3-056f-4eed-a0af-74161355346a", - "name": "foo2", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "f87cd3d2-8000-4168-9e88-b05571669ad8", - "ip": "51.158.56.109", - "port": 23224, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1200" - }, - { - "name": "maintenance_work_mem", - "value": "200" - }, - { - "name": "max_connections", - "value": "150" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "16" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "f87cd3d2-8000-4168-9e88-b05571669ad8", - "ip": "51.158.56.109", - "port": 23224, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "7a3da0cf-a81b-412f-941f-dd23dbd9e739", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "454bcc76-4e87-4ca6-a727-81404620a0dc", - "ip": "195.154.197.149", - "port": 27839, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "8" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "454bcc76-4e87-4ca6-a727-81404620a0dc", - "ip": "195.154.197.149", - "port": 27839, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "d33a7dd3-d4d9-463f-a31e-ce887630df99", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "f89bd777-a8f3-4da7-9ed5-0260d55912b7", - "ip": "195.154.197.149", - "port": 15773, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "f89bd777-a8f3-4da7-9ed5-0260d55912b7", - "ip": "195.154.197.149", - "port": 15773, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "bcdd21bc-d8e8-4e44-9550-e8f98e5951f8", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "MySQL-8", + "engine": "PostgreSQL-15", "upgradable_version": [], "endpoint": { - "id": "008d9143-6b03-4762-9205-07e2a4e908b7", - "ip": "51.159.204.209", - "port": 28228, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "max_connections", - "value": "100" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "008d9143-6b03-4762-9205-07e2a4e908b7", - "ip": "51.159.204.209", - "port": 28228, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "40d840c4-1048-4af7-a474-7c5262412a0c", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-14", - "upgradable_version": [ - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "59badc7c-334d-45ee-8aed-d6927cd26753", - "ip": "195.154.197.149", - "port": 5740, - "name": null, - "load_balancer": {} - }, - "tags": [], - "settings": [ - { - "name": "effective_cache_size", - "value": "1300" - }, - { - "name": "maintenance_work_mem", - "value": "150" - }, - { - "name": "max_connections", - "value": "100" - }, - { - "name": "max_parallel_workers", - "value": "0" - }, - { - "name": "max_parallel_workers_per_gather", - "value": "0" - }, - { - "name": "work_mem", - "value": "4" - } - ], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [ - { - "id": "f7e42a21-04ef-4388-8a83-49fbb7a373b6", - "ip": "172.16.0.3", - "port": 5432, - "name": null, - "private_network": { - "private_network_id": "20a8842e-1e39-4250-8bd3-d61686c6f59a", - "service_ip": "172.16.0.3/22", - "zone": "fr-par-1", - "provisioning_mode": "static" - } - }, - { - "id": "59badc7c-334d-45ee-8aed-d6927cd26753", - "ip": "195.154.197.149", - "port": 5740, - "name": null, - "load_balancer": {} - } - ], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "675bd3aa-b830-42ca-be29-a8970898d7f2", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "endpoint": { - "id": "8d944bed-3f50-4865-9a9c-f0f681af7acc", - "ip": "51.159.204.209", - "port": 4040, + "id": "56e0207e-7ed1-486a-a5ac-f3d23ce91bda", + "ip": "195.154.71.12", + "port": 21189, "name": null, "load_balancer": {} }, @@ -1206,9 +65,9 @@ f9d08c90-d2ec-4f48-9e03-cb88824aa767 cli-test db-dev-s initialized PostgreS "init_settings": [], "endpoints": [ { - "id": "8d944bed-3f50-4865-9a9c-f0f681af7acc", - "ip": "51.159.204.209", - "port": 4040, + "id": "56e0207e-7ed1-486a-a5ac-f3d23ce91bda", + "ip": "195.154.71.12", + "port": 21189, "name": null, "load_balancer": {} } @@ -1219,61 +78,8 @@ f9d08c90-d2ec-4f48-9e03-cb88824aa767 cli-test db-dev-s initialized PostgreS }, "backup_same_region": false, "maintenances": [], - "encryption": null - }, - { - "created_at": "1970-01-01T00:00:00.0Z", - "volume": { - "type": "lssd", - "size": 5000000000, - "class": "lssd" - }, - "region": "fr-par", - "id": "f9d08c90-d2ec-4f48-9e03-cb88824aa767", - "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "status": "initializing", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], - "tags": [], - "settings": [], - "backup_schedule": { - "frequency": 24, - "retention": 7, - "disabled": false, - "next_run_at": "1970-01-01T00:00:00.0Z" - }, - "is_ha_cluster": false, - "read_replicas": [], - "node_type": "db-dev-s", - "init_settings": [], - "endpoints": [], - "logs_policy": { - "max_age_retention": 30, - "total_disk_retention": null - }, - "backup_same_region": false, - "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } ] diff --git a/internal/namespaces/rdb/v1/testdata/test-list-user-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-list-user-simple.cassette.yaml index 036a5d85a..d3eee528d 100644 --- a/internal/namespaces/rdb/v1/testdata/test-list-user-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-list-user-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:02:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73d44a6c-ec02-46fd-b0bf-10484f4c32f9 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:41 GMT + - Tue, 07 Jan 2025 15:02:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbbc4f69-485f-4cb3-93f7-cb2f85a77f33 + - 1c5daf3a-e27a-409f-a1aa-36d905faf7cc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:41 GMT + - Tue, 07 Jan 2025 15:02:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d27ef7fb-e2e0-428a-b436-006dd7a923f4 + - 85e382d5-8257-4632-bb77-237f283b393e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:37:59 GMT + - Tue, 07 Jan 2025 15:02:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b665a06-3af6-457d-a5e0-54ad349d5814 + - 390ee10e-7b2c-465f-b057-688c2a2f490f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:38:15 GMT + - Tue, 07 Jan 2025 15:02:44 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b4a7221-4e03-461b-a5a7-786f98e9d1ca + - 847d9a46-8427-4bf4-89ae-bed7c0f12646 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:38:30 GMT + - Tue, 07 Jan 2025 15:02:59 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06ce8659-132e-434b-badc-570173c6c9d0 + - e46fdd5a-46f6-4652-86b7-872730cfceeb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:38:45 GMT + - Tue, 07 Jan 2025 15:03:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac770ca2-acbe-47cf-9adf-7be371420d09 + - 42ae8c84-ba93-41e0-9582-a04c4a30610f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:39:01 GMT + - Tue, 07 Jan 2025 15:03:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5738e21-01f8-4d73-b3e7-992a79241bf2 + - f7cf4605-c877-4105-a2e3-f17171ef5ad7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:39:16 GMT + - Tue, 07 Jan 2025 15:03:44 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e84a5b2-d055-44cb-a62e-6f60dfa0b9c9 + - 84b6592f-bb12-48a6-8b8d-918d0667c90e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:39:31 GMT + - Tue, 07 Jan 2025 15:03:59 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,191 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19627b58-845a-48c8-9ce1-3ae9733facc4 + - 87c0870f-803f-4c23-8d8c-df102ea27073 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:04:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cfa4470-1060-4525-83d1-a28ae371b563 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 + method: GET + response: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:04:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 154bd4ae-5ed2-4812-a89e-24e608f25321 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 + method: GET + response: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4010f3d0-16aa-4c19-94f3-b3325db9bfa2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 + method: GET + response: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:39:46 GMT + - Tue, 07 Jan 2025 15:05:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,59 +2729,107 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82413cc1-cfec-4a69-9a67-f9a9c9fbe597 + - 05cbeac9-0e17-4b39-8d80-ecd3f3c026b6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:37:40.840820Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:37:40.840820Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:05:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d684484-9909-44d8-979a-d29d504789ef + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 + method: GET + response: + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:02:13.418728Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:02 GMT + - Tue, 07 Jan 2025 15:05:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d2f57f9-d88f-4348-b2f7-ac53de616644 + - 9cd10945-af90-414c-9e97-53cde747ac3d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29184, "name":null, "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29184, "name":null, - "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:02:13.418728Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: GET response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29184, "name":null, "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29184, "name":null, - "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:02:13.418728Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:17 GMT + - Tue, 07 Jan 2025 15:05:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -663,7 +2897,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a940002b-edea-41be-8962-875ee88356dc + - df52ed1e-dace-4d8f-aac1-a8e9df77788e status: 200 OK code: 200 duration: "" @@ -672,8 +2906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342/users?order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6/users?order_by=name_asc&page=1 method: GET response: body: '{"users":[{"name":"foobar", "is_admin":true}], "total_count":1}' @@ -685,9 +2919,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:17 GMT + - Tue, 07 Jan 2025 15:05:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,7 +2929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a6352dd-7edf-486f-9612-5af79d72eb7c + - 152751c8-f18b-4ece-9f1a-5ab541bbe1f1 status: 200 OK code: 200 duration: "" @@ -705,8 +2939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342/privileges?order_by=user_name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6/privileges?order_by=user_name_asc&page=1 method: GET response: body: '{"privileges":[{"permission":"all", "database_name":"rdb", "user_name":"foobar"}], @@ -719,9 +2953,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:18 GMT + - Tue, 07 Jan 2025 15:05:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -729,63 +2963,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a9dac6f-fb1f-4c04-b185-ab3d870f03f5 + - b24f0732-bf34-48c2-bb8f-bbdb94f87419 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29184, "name":null, "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29184, "name":null, - "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:02:13.418728Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/31ba809e-e2bd-498d-ae52-7ba05114e342 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/e06995d5-0dae-4aa1-a350-d1ec853c26d6 method: DELETE response: - body: '{"id":"31ba809e-e2bd-498d-ae52-7ba05114e342", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29184, "name":null, "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"e06995d5-0dae-4aa1-a350-d1ec853c26d6", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:37:40.840820Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:02:13.418728Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29184, "name":null, - "id":"74bf22ea-9225-4baf-ac15-da539ff5e228", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":19347, "name":null, + "id":"e7d228ab-586b-45eb-be0d-db1a29dcb4bc", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:37:40.840820Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:02:13.418728Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:40:18 GMT + - Tue, 07 Jan 2025 15:05:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,7 +3023,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fbd8be0-7994-4c37-9bf4-78b7c6dfee79 + - 3014e003-3208-4928-a23e-a400d5fe8663 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.cassette.yaml index c06629f11..ca2be3888 100644 --- a/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.cassette.yaml @@ -2,50 +2,44 @@ version: 1 interactions: - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:09:15 GMT + - Tue, 07 Jan 2025 13:41:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +47,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afd532dd-baae-47d0-a4cd-7c8a676acb8e + - 3f6c93da-b4e8-49b0-8eae-fded91e4d23e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:09:15 GMT + - Tue, 07 Jan 2025 13:41:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +95,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a69a0f7-64fb-4879-b50d-216c8ec44efb + - 345749ea-168b-42af-b9e3-e89a1deb07ff status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:09:30 GMT + - Tue, 07 Jan 2025 13:41:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +143,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ca26d5-6ef5-4feb-8e48-814636754cf5 + - 8f2b551a-9749-40bc-a760-4a4c19366f65 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:09:45 GMT + - Tue, 07 Jan 2025 13:41:44 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +191,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9b84599-8007-4370-b70d-b6b02c066faa + - 9d4bc752-5e66-47b7-a1d1-71e50ee5776c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:10:01 GMT + - Tue, 07 Jan 2025 13:41:59 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +239,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d389d889-734d-4ef2-a9e1-3ed69695811f + - 0445afc9-6090-4971-9a88-1198972ac1b5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:10:16 GMT + - Tue, 07 Jan 2025 13:42:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +287,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 152d3cb7-9097-4842-940f-ed0de7a4cacb + - 08c8b34b-1a56-4fdb-afcb-268ec0e56c45 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:10:31 GMT + - Tue, 07 Jan 2025 13:42:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +335,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 791ecc4b-50c5-4c4a-8a70-138baa9e6836 + - dfcadc16-ff8d-498f-9b7e-65042d8eef6c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:10:50 GMT + - Tue, 07 Jan 2025 13:42:45 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +383,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb6276c1-75f3-4f31-99e8-e0bdcef25a50 + - ba8886f1-5836-480d-b171-c6c6bf4d8bbe status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:11:06 GMT + - Tue, 07 Jan 2025 13:43:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +431,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41b8c8e9-6659-46c1-bd56-5993dc9992de + - 94296444-343c-4f5c-a114-9a4bbc356692 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:11:21 GMT + - Tue, 07 Jan 2025 13:43:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +479,251 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb37ec12-f654-412c-8daf-5dd430be4397 + - 6a74523e-ec2e-4220-81e6-1506239c0522 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:43:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0963139a-8a39-4f62-b899-6cd5de840e3f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 + method: GET + response: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:43:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3214cd14-e2c1-4db1-a2b3-5edd03a6367c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 + method: GET + response: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:44:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04e1edb3-a15c-4d1d-9d81-32dfbb5a56ce + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 + method: GET + response: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:44:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7679c19-3e1b-4e12-bc63-470d39683878 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 + method: GET + response: + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:41:14.010596Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:11:36 GMT + - Tue, 07 Jan 2025 13:44:31 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,63 +731,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63bb67a4-bc7a-49d3-a409-f17889b0b7e1 + - a73a11ee-9aa6-4861-ae02-533a87a6b346 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":20924, "name":null, "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":20924, "name":null, - "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:41:14.010596Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: GET response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":20924, "name":null, "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":20924, "name":null, - "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:41:14.010596Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:11:51 GMT + - Tue, 07 Jan 2025 13:44:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -657,27 +791,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b36c38f-7584-4503-ab19-a189c5b29906 + - 6b07e29b-9f97-4ac3-8013-ec30418cdbeb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups method: POST response: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -687,9 +821,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:12:52 GMT + - Tue, 07 Jan 2025 13:45:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -697,25 +831,25 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88ad294f-8d20-4fac-9d38-df02e3d1d89d + - 1eda1cc1-d906-4250-bf4a-3a3b637ab281 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/787ecd88-1fe3-4c70-8d46-d31a4d5f5ade method: GET response: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "database_name":"rdb", "name":"foobar", "status":"creating", "size":null, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":null, "instance_name":"cli-test", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":null, "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: Content-Length: @@ -725,9 +859,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:12:52 GMT + - Tue, 07 Jan 2025 13:45:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -735,26 +869,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f4a32db-0c8b-43cc-9e0e-585bdb809eaf + - 5e0c67de-a208-4372-8f53-b29a874f1d88 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:12:54.204768Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:45:48.928256Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/787ecd88-1fe3-4c70-8d46-d31a4d5f5ade method: GET response: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:12:54.204768Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:45:48.928256Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -765,9 +899,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:07 GMT + - Tue, 07 Jan 2025 13:46:01 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -775,14 +909,14 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29600e5d-a018-4b92-9389-bb246c945837 + - 5cb9253a-f26e-4454-9cd9-34b3adb4f991 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:12:54.204768Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:45:48.928256Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} @@ -790,13 +924,13 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3/restore + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/787ecd88-1fe3-4c70-8d46-d31a4d5f5ade/restore method: POST response: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:12:54.204768Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:45:48.928256Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -807,9 +941,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:08 GMT + - Tue, 07 Jan 2025 13:46:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,26 +951,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 728880ba-0bf7-4696-b922-4f0f03a378c0 + - 0832f54f-90b9-4c64-bfa3-d337f58b37a9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:12:54.204768Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:45:48.928256Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/787ecd88-1fe3-4c70-8d46-d31a4d5f5ade method: GET response: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:12:54.204768Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"restoring", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:45:48.928256Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -847,9 +981,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:08 GMT + - Tue, 07 Jan 2025 13:46:02 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -857,26 +991,26 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a72dd58-3e0f-4942-abf4-14fae63e2253 + - 3011ae7c-7924-40bb-a097-4915bcb497df status: 200 OK code: 200 duration: "" - request: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:13:09.865245Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:46:04.230019Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/backups/787ecd88-1fe3-4c70-8d46-d31a4d5f5ade method: GET response: - body: '{"id":"bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", "instance_id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", - "database_name":"rdb", "name":"foobar", "status":"ready", "size":2107, "expires_at":"2032-01-02T22:04:05Z", - "created_at":"2023-11-09T19:12:52.325421Z", "updated_at":"2023-11-09T19:13:09.865245Z", + body: '{"id":"787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", "instance_id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", + "database_name":"rdb", "name":"foobar", "status":"ready", "size":2104, "expires_at":"2032-01-02T22:04:05Z", + "created_at":"2025-01-07T13:45:46.606573Z", "updated_at":"2025-01-07T13:46:04.230019Z", "instance_name":"cli-test", "download_url":null, "download_url_expires_at":null, "same_region":false, "region":"fr-par"}' headers: @@ -887,9 +1021,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:23 GMT + - Tue, 07 Jan 2025 13:46:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,63 +1031,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b97849fc-75b2-46db-8bb3-a70c3d1deef9 + - 9aa90664-39ef-4567-8861-e5fd9b16ab7d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":20924, "name":null, "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":20924, "name":null, - "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:41:14.010596Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0761b1ab-69c5-49b8-891a-28b7e53dc674 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/694f5cf8-e1da-4362-a38a-33eb3beb80f3 method: DELETE response: - body: '{"id":"0761b1ab-69c5-49b8-891a-28b7e53dc674", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.158.57.216", - "port":20924, "name":null, "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"694f5cf8-e1da-4362-a38a-33eb3beb80f3", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-10T19:09:14.336231Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T13:41:14.010596Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.158.57.216", "port":20924, "name":null, - "id":"ddce2ff8-20c3-423b-afb8-90debd6e960a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":26722, "name":null, + "id":"adb8cda4-a4e2-4c83-ab5f-9c1ab46b3a46", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-09T19:09:14.336231Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:41:14.010596Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Nov 2023 19:13:24 GMT + - Tue, 07 Jan 2025 13:46:18 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -961,7 +1091,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 341611fd-84e6-47fb-8e7a-97fd324797cf + - b3fa5c48-9f75-4c3a-9eb3-9abde4780f81 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.golden b/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.golden index 8a6a1e51f..2de8844fd 100644 --- a/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-restore-backup-simple.golden @@ -1,7 +1,7 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -ID bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3 -InstanceID 0761b1ab-69c5-49b8-891a-28b7e53dc674 +ID 787ecd88-1fe3-4c70-8d46-d31a4d5f5ade +InstanceID 694f5cf8-e1da-4362-a38a-33eb3beb80f3 DatabaseName rdb Name foobar Status ready @@ -14,12 +14,12 @@ Region fr-par SameRegion false 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { - "id": "bf4eb12e-d7d8-4e7f-9524-787eb6cabcf3", - "instance_id": "0761b1ab-69c5-49b8-891a-28b7e53dc674", + "id": "787ecd88-1fe3-4c70-8d46-d31a4d5f5ade", + "instance_id": "694f5cf8-e1da-4362-a38a-33eb3beb80f3", "database_name": "rdb", "name": "foobar", "status": "ready", - "size": 2107, + "size": 2104, "expires_at": "2032-01-02T22:04:05Z", "created_at": "1970-01-01T00:00:00.0Z", "updated_at": "1970-01-01T00:00:00.0Z", diff --git a/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.cassette.yaml index 07b7902ed..d7b920e7f 100644 --- a/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.cassette.yaml @@ -2,28 +2,2198 @@ version: 1 interactions: - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:32:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43900ef7-95ef-4b2a-8644-bca2ec1896bf + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:32:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 451e3c2a-d04d-4e89-9302-0110f864e9f3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 + method: GET + response: + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:20:28 GMT + - Tue, 07 Jan 2025 13:32:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -31,31 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 508324bd-9195-4994-b9d9-702bc05e4da4 + - e016bd41-2a62-4199-9a22-f14561e60700 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:20:29 GMT + - Tue, 07 Jan 2025 13:32:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -63,31 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06be5f32-5469-460e-abb3-d807696c2f73 + - a415782a-2851-42e6-a67f-9c9291328343 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:20:44 GMT + - Tue, 07 Jan 2025 13:32:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,31 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a89f76d-73a3-424b-9689-e619dc2312b9 + - 62ae6d17-cffe-4494-a315-404f1a5f3070 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:21:00 GMT + - Tue, 07 Jan 2025 13:32:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -127,31 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f3a3fdd-1895-4bc1-8993-721c61f8a58d + - e2fb35f4-d206-4e78-928f-160c464c5af2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:21:15 GMT + - Tue, 07 Jan 2025 13:33:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -159,31 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc02efa1-284b-414a-b0e7-a7b041a17eb2 + - 4c01352b-9f21-4023-9499-c392f72daa08 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:21:31 GMT + - Tue, 07 Jan 2025 13:33:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -191,31 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72bb6390-4127-4c84-9c58-8b6074b1bdf2 + - 9a97d536-3ddb-448a-aadd-704400a6fbb7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:21:47 GMT + - Tue, 07 Jan 2025 13:33:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -223,31 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a366214-7121-4a66-8d80-6b61d553d738 + - f5cfe7ff-5db3-4178-a72f-23d20bd6c773 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:22:02 GMT + - Tue, 07 Jan 2025 13:33:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -255,31 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c05b0f9-c7dd-401b-8b42-58af8f82a452 + - 4968e1f7-ddff-4461-bb13-4c739d8f1278 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:22:17 GMT + - Tue, 07 Jan 2025 13:34:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -287,31 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ac8b5bc-4c87-45b2-84d4-ea78d4fa765a + - 44371f8a-519f-4390-9587-8ea5ffdddbe8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:22:36 GMT + - Tue, 07 Jan 2025 13:34:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -319,31 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 713e4934-2b46-4a00-bf0c-0822f7e820cb + - c4a0906d-bb06-4a2a-a2da-276b23854ae3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:22:51 GMT + - Tue, 07 Jan 2025 13:34:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -351,31 +2681,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6ef3cc9-d206-4d6d-8a58-d504a57d7e0f + - 097ab825-f8d3-4f74-a0c2-eb498615abfc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:06 GMT + - Tue, 07 Jan 2025 13:34:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,31 +2735,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b24091fb-e73e-4f0c-8fef-5c45d39585d8 + - 86b4230e-d037-4d32-9720-c1c4f8f769d7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.771621Z", "region":"fr-par"}' headers: Content-Length: - - "1310" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:21 GMT + - Tue, 07 Jan 2025 13:35:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -415,31 +2789,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0013b5d6-2654-4748-8b34-2c5fe2bd0039 + - efe34b16-e6e1-43c2-ae82-98b8e97c976f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1517" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:36 GMT + - Tue, 07 Jan 2025 13:35:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -447,37 +2849,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd989a62-15a0-4a17-b38a-ef3aa28d16a4 + - ce8275ab-a2b2-4c76-a021-d26a49f53754 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - All"},{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow + body: '{"rules":[{"ip":"0.0.0.0/0", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - All"},{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow + body: '{"rules":[{"ip":"0.0.0.0/0", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 1.2.3.4/32"}]}' headers: Content-Length: - - "245" + - "256" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:37 GMT + - Tue, 07 Jan 2025 13:35:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,31 +2889,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4e44f9b-f580-445c-9e5b-5ee860032f24 + - d4e1a90a-9eb7-405a-be6a-f973d30c4f2f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1523" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:37 GMT + - Tue, 07 Jan 2025 13:35:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -517,31 +2949,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd16b9a0-859b-412f-8ad1-a6bcab1fcea2 + - b5e02904-95bd-4946-8301-5699d0e8b3aa status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1517" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:52 GMT + - Tue, 07 Jan 2025 13:35:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -549,39 +3009,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de0f4d4a-2d92-405d-b871-69965f21fefe + - e5dd0d30-47b2-4b9c-ac60-29728e11b982 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - All"},{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 1.2.3.4/32"},{"ip":"192.168.1.0/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 192.168.1.0/32"}]}' + body: '{"rules":[{"ip":"0.0.0.0/0", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + 1.2.3.4/32"}, {"ip":"192.168.1.0/32", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - All"},{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 1.2.3.4/32"},{"ip":"192.168.1.0/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 192.168.1.0/32"}]}' + body: '{"rules":[{"ip":"0.0.0.0/0", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + 1.2.3.4/32"}, {"ip":"192.168.1.0/32", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: Content-Length: - - "374" + - "391" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:52 GMT + - Tue, 07 Jan 2025 13:35:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,31 +3051,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 942f2ef2-2d4f-4aac-98ee-352be920d00e + - e1d14d4a-e51a-4380-932c-6668244d7acb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1523" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:23:52 GMT + - Tue, 07 Jan 2025 13:35:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -621,31 +3111,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c869315-9691-4ddb-ad59-4b539f674aa0 + - 97d208b9-9e87-4eb3-8acb-655abedbdd17 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1517" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:07 GMT + - Tue, 07 Jan 2025 13:35:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,41 +3171,45 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aec2eb09-dfa9-4127-a18a-203290b5c6da + - 2d3f298f-5b87-4ff0-8ce0-962fbc22c394 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"0.0.0.0/0","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - All"},{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 1.2.3.4/32"},{"ip":"10.10.10.10/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 10.10.10.10/32"},{"ip":"192.168.1.0/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow + body: '{"rules":[{"ip":"0.0.0.0/0", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/32", + "port":4257, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014/acls method: POST response: - body: '{"rules":[{"ip":"0.0.0.0/0","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - All"},{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 1.2.3.4/32"},{"ip":"10.10.10.10/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow - 10.10.10.10/32"},{"ip":"192.168.1.0/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"Allow + body: '{"rules":[{"ip":"0.0.0.0/0", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow All"}, {"ip":"1.2.3.4/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow + 1.2.3.4/32"}, {"ip":"10.10.10.10/32", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"Allow 10.10.10.10/32"}, {"ip":"192.168.1.0/32", + "port":4257, "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"Allow 192.168.1.0/32"}]}' headers: Content-Length: - - "503" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:08 GMT + - Tue, 07 Jan 2025 13:35:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,31 +3217,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e57bd58-0e20-4240-9870-9b558e16ce47 + - 199da1d9-6da8-4efb-9795-50898f9f4548 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1523" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:08 GMT + - Tue, 07 Jan 2025 13:35:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -727,31 +3277,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c24e5fb-e3d9-4990-aede-1d5b12ff2c15 + - da623173-12e9-454c-81d9-ffdd55b2f224 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1517" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:23 GMT + - Tue, 07 Jan 2025 13:36:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -759,33 +3337,41 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3113088-aa8f-46ff-b1eb-88f56fada1cd + - ddd5632d-563b-4270-8045-f537a1185613 status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"first"},{"ip":"11.11.11.11/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"third"},{"ip":"192.168.1.0/31","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"second"}]}' + body: '{"rules":[{"ip":"1.2.3.4/32", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"first"}, {"ip":"11.11.11.11/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"third"}, + {"ip":"192.168.1.0/31", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"second"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014/acls method: PUT response: - body: '{"rules":[{"ip":"1.2.3.4/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"first"},{"ip":"11.11.11.11/32","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"third"},{"ip":"192.168.1.0/31","port":4389,"protocol":"tcp","direction":"inbound","action":"allow","description":"second"}]}' + body: '{"rules":[{"ip":"1.2.3.4/32", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"first"}, {"ip":"11.11.11.11/32", "port":4257, + "protocol":"tcp", "direction":"inbound", "action":"allow", "description":"third"}, + {"ip":"192.168.1.0/31", "port":4257, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"second"}]}' headers: Content-Length: - - "350" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:23 GMT + - Tue, 07 Jan 2025 13:36:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,31 +3379,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20fcc341-b013-4df4-8844-299d769a0b46 + - d5e9f984-e2e5-4e45-a3a9-ef48803c72e0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", + "port":4257, "name":null, "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1523" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:24 GMT + - Tue, 07 Jan 2025 13:36:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -825,31 +3439,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4ee35f7-8cd4-4091-9abf-dac61656d1ee + - 9d80b8b0-2f00-41ae-99bc-c9d3c07aa60f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: GET response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1517" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:39 GMT + - Tue, 07 Jan 2025 13:36:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -857,31 +3499,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c41453a0-f7d8-4070-bf56-1162ebd9bd31 + - 0954a11e-e989-4559-8154-04c625bdb5a3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"deleting","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3ccf1bba-10aa-4e57-ab54-d3281248e590 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/cd38b578-eba3-4195-b85d-9035c2471014 method: DELETE response: - body: '{"id":"3ccf1bba-10aa-4e57-ab54-d3281248e590","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"deleting","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:20:28.324749Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":4389,"name":null,"id":"5ba2d8bd-eff1-4c9c-a16b-af6ca753ff3e","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:20:28.324749Z","region":"fr-par"}' + body: '{"id":"cd38b578-eba3-4195-b85d-9035c2471014", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.771621Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.70.7", "port":4257, "name":null, + "id":"9aaa0e73-66b5-4506-8cee-a7c59c69faa9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.771621Z", + "region":"fr-par"}' headers: Content-Length: - - "1520" + - "1274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:24:39 GMT + - Tue, 07 Jan 2025 13:36:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,7 +3559,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2557de4-9132-4415-9a59-acd57e9918a0 + - 12a5dbcf-16c4-48d4-8754-2429824e53a1 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.golden b/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.golden index 768b9063e..ac13a97d9 100644 --- a/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-set-acl-multiple.golden @@ -2,15 +2,15 @@ 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rules successfully set. IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -1.2.3.4/32 4389 tcp inbound allow first -11.11.11.11/32 4389 tcp inbound allow third -192.168.1.0/31 4389 tcp inbound allow second +1.2.3.4/32 4257 tcp inbound allow first +11.11.11.11/32 4257 tcp inbound allow third +192.168.1.0/31 4257 tcp inbound allow second 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Rules": [ { "ip": "1.2.3.4/32", - "port": 4389, + "port": 4257, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -18,7 +18,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "11.11.11.11/32", - "port": 4389, + "port": 4257, "protocol": "tcp", "direction": "inbound", "action": "allow", @@ -26,7 +26,7 @@ IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION }, { "ip": "192.168.1.0/31", - "port": 4389, + "port": 4257, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.cassette.yaml index 0752f0ac9..f197197dd 100644 --- a/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.cassette.yaml @@ -2,28 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 13:32:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5eeb19f5-305c-42f1-8d7e-37c877e6b991 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:07:35 GMT + - Tue, 07 Jan 2025 13:32:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -31,31 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86a87c82-4a1d-403f-8fe1-1ebddd7adde1 + - 6f7e16e1-2ca7-473e-95d2-b4dae399fc20 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:07:36 GMT + - Tue, 07 Jan 2025 13:32:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -63,31 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d87518d-9d89-4491-930e-e42d6e2a67ca + - b81e27ce-e363-46e1-8dce-9b061fbf92a3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:07:51 GMT + - Tue, 07 Jan 2025 13:32:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,31 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b0ed51d-2fec-40c4-bb1b-14bac183398c + - aa14c007-7062-4a86-9ee0-3188901a0785 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"provisioning","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:08:06 GMT + - Tue, 07 Jan 2025 13:32:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -127,31 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b8ee96f-552c-4f36-aea6-4766c5596fe1 + - bedf8b0d-f2ee-4a17-8243-532e318038ef status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:08:21 GMT + - Tue, 07 Jan 2025 13:32:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -159,31 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a61ca42a-9797-46b0-8b4e-0be9d02973af + - 569504af-fea4-49ea-8a6b-b27bc0561f32 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:08:36 GMT + - Tue, 07 Jan 2025 13:33:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -191,31 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29546d23-8258-4718-ae5a-749ae453694e + - 38f75c17-b34a-45c6-983e-03e706662145 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:08:51 GMT + - Tue, 07 Jan 2025 13:33:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -223,31 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79c4741f-836e-4199-8f81-36742d7d3480 + - dd479f7e-662d-4454-ae92-92eb52b32877 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:09:07 GMT + - Tue, 07 Jan 2025 13:33:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -255,31 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b46e770d-2758-4220-bfcc-daf8caf90040 + - c91edb64-4c15-48c2-ace7-d80e6d9f0e75 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:09:22 GMT + - Tue, 07 Jan 2025 13:33:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -287,31 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81badd1e-b05b-4972-aaf9-83ff4dd43f20 + - 42870eac-ed2d-478e-a977-1a1437358cc2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1046" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:09:37 GMT + - Tue, 07 Jan 2025 13:34:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -319,31 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea7b0d7a-48d0-436c-9df6-9bf0a5e878e2 + - df596d4b-8022-43ba-9531-265f5880971a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1310" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:09:52 GMT + - Tue, 07 Jan 2025 13:34:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -351,31 +2633,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d333f715-6e52-4664-9fce-46c375b8a081 + - 02b13cc5-bffe-4416-8a48-6482a4ea73c2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"initializing","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":null,"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T13:32:03.951646Z", "region":"fr-par"}' headers: Content-Length: - - "1310" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:10:07 GMT + - Tue, 07 Jan 2025 13:34:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -383,31 +2687,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17ac29a0-9154-4291-85c7-e2799e05e9e3 + - af910a58-9163-4f5f-b1cf-025d07434c7e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' headers: Content-Length: - - "1519" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:10:23 GMT + - Tue, 07 Jan 2025 13:34:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -415,33 +2747,35 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7c1cd21-7218-4716-ab22-ff6553c6024d + - 7aa35bff-026a-4729-b263-33e65afe8c4e status: 200 OK code: 200 duration: "" - request: - body: '{"rules":[{"ip":"1.2.3.4/32","port":24079,"protocol":"tcp","direction":"inbound","action":"allow","description":"something"}]}' + body: '{"rules":[{"ip":"1.2.3.4/32", "port":6982, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"something"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b/acls + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a/acls method: PUT response: - body: '{"rules":[{"ip":"1.2.3.4/32","port":24079,"protocol":"tcp","direction":"inbound","action":"allow","description":"something"}]}' + body: '{"rules":[{"ip":"1.2.3.4/32", "port":6982, "protocol":"tcp", "direction":"inbound", + "action":"allow", "description":"something"}]}' headers: Content-Length: - - "126" + - "130" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:10:23 GMT + - Tue, 07 Jan 2025 13:34:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -449,31 +2783,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b50fa0c1-504c-473e-9742-d67222d76f1e + - ebab992a-ef4b-4ff4-aeb7-17882fcb8322 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":6982, "name":null, "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"configuring","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", + "port":6982, "name":null, "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, + "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' headers: Content-Length: - - "1525" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:10:23 GMT + - Tue, 07 Jan 2025 13:34:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -481,31 +2843,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69cd1698-2440-49ea-a2d9-5fff8fa7552d + - 4c7b72b9-cffe-421a-a4cf-d04c1d9ea76a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: GET response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"ready","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' headers: Content-Length: - - "1519" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:10:38 GMT + - Tue, 07 Jan 2025 13:35:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -513,31 +2903,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cd024c6-94b9-4709-9f42-236acd14f7c4 + - ff203a26-d257-455d-a8be-1e3f63670039 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"deleting","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.22.0; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/28611f56-d42e-4b76-9b13-63a56af3114b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a method: DELETE response: - body: '{"id":"28611f56-d42e-4b76-9b13-63a56af3114b","name":"cli-test","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","status":"deleting","engine":"PostgreSQL-12","upgradable_version":[{"id":"43f09d77-6597-479b-b705-4a93735b85e9","name":"PostgreSQL-13","version":"13","minor_version":"13.14"},{"id":"1d5d77e5-5644-4468-9d8e-d9008476f2f3","name":"PostgreSQL-14","version":"14","minor_version":"14.11"},{"id":"f70a484b-31e2-4bd4-aefb-8eb15eb667d8","name":"PostgreSQL-15","version":"15","minor_version":"15.6"}],"endpoint":{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}},"tags":[],"settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"backup_schedule":{"frequency":24,"retention":7,"disabled":false,"next_run_at":"2024-04-10T18:07:35.808696Z"},"is_ha_cluster":false,"read_replicas":[],"node_type":"db-dev-s","volume":{"type":"lssd","size":5000000000,"class":"lssd"},"init_settings":[],"endpoints":[{"ip":"51.158.59.186","port":24079,"name":null,"id":"89eebb3f-d2cb-42b8-a089-90683d578553","load_balancer":{}}],"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"backup_same_region":false,"maintenances":[],"created_at":"2024-04-09T18:07:35.808696Z","region":"fr-par"}' + body: '{"id":"0b6f4e51-32f1-48ed-b66b-2f6f0d60b20a", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T13:32:03.951646Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.71.12", "port":6982, "name":null, + "id":"9da7afe9-c55d-4ba8-bc11-92fa1339dd25", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T13:32:03.951646Z", + "region":"fr-par"}' headers: Content-Length: - - "1522" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 09 Apr 2024 18:10:39 GMT + - Tue, 07 Jan 2025 13:35:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -545,7 +2963,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4136aa1f-dbc8-46f8-851f-b0b55cc6b83a + - 2e11c093-20fb-4c17-afcb-ca22dc416e6d status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.golden b/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.golden index e6ecbf172..110bfad42 100644 --- a/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-set-acl-simple.golden @@ -1,14 +1,14 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ βœ… ACL rules successfully set. -IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION -1.2.3.4/32 24079 tcp inbound allow something +IP PORT PROTOCOL DIRECTION ACTION DESCRIPTION +1.2.3.4/32 6982 tcp inbound allow something 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 { "Rules": [ { "ip": "1.2.3.4/32", - "port": 24079, + "port": 6982, "protocol": "tcp", "direction": "inbound", "action": "allow", diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.cassette.yaml index e8f784770..43e6a971b 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b96b7ade-ba6c-45e5-87ca-b644a72b13a1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e264c6e-2075-4391-a9a5-8a1458ba70be + - 7bcc9dba-4151-4c14-ba56-9d6fab37a5df status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c44fd430-be9d-4563-8d92-b0948d10d42c + - 3058a804-a134-4cb4-92ac-0a3a7d1d5514 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:26 GMT + - Tue, 07 Jan 2025 14:47:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6fdfca2-2b4f-4d2d-8bef-283ec22ff241 + - b081d317-4a82-474d-b600-0dae9c112847 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:41 GMT + - Tue, 07 Jan 2025 14:47:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe33624c-de70-4dd1-95f3-200b50f38882 + - e0c00629-64be-4b1e-8c31-dae6084160be status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:57 GMT + - Tue, 07 Jan 2025 14:47:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e53cdfca-fe1a-4881-9d03-a16c6e523688 + - 0283e4f9-b331-439a-8633-269e6c226a8a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:12 GMT + - Tue, 07 Jan 2025 14:47:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87267e7a-0f5e-46fe-87c7-b0ed8018fecc + - a1e16a79-4fa2-4c9a-99bb-1e35e30de75c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:27 GMT + - Tue, 07 Jan 2025 14:48:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21d516f4-8658-40b1-93da-4487de13cf34 + - 2b74acfa-7747-4e85-a3cf-92db354e2500 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:42 GMT + - Tue, 07 Jan 2025 14:48:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3981c38-bf8a-4a0b-a59f-c0af1a9a0cd5 + - 943d82ec-eeb6-4d6c-ab15-0d2ad6c9da5a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:59 GMT + - Tue, 07 Jan 2025 14:48:43 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d582f7b-b468-40e0-8ea6-449b245f6041 + - fbc69266-cb14-4939-b044-5a600a5881d3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:14 GMT + - Tue, 07 Jan 2025 14:48:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9889bf80-ca2f-4441-929a-ad383c4a6bdf + - 5ca4b339-b76d-496c-a087-f10b3d1f049c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:29 GMT + - Tue, 07 Jan 2025 14:49:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 323f0ec5-ba28-4e69-82e5-f149dd297ad5 + - d0b6bf5a-3920-45ff-bd59-3995912351ff status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:44 GMT + - Tue, 07 Jan 2025 14:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,63 +2681,215 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93f8d26f-aa33-41d2-a460-0dcf4044396a + - ae24a38d-9ff3-4e89-a0aa-c79b3024d0e4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b + method: GET + response: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d623b5c-c508-4cfb-bc27-bdff3b1562c5 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b + method: GET + response: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6a5657c-95d8-48cf-b7e1-516eb7dd492f + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b + method: GET + response: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.811823Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:50:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88c08183-8d40-4503-99d7-ee3fddbc48b1 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:59 GMT + - Tue, 07 Jan 2025 14:50:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -711,63 +2897,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f0c41e0-9e51-44e1-83a5-1c30b8d547c9 + - 47df52e7-e81c-46e8-8072-be16e42e9c96 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:00 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -775,7 +2957,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2d6e178-650c-48d1-892a-0ab237936dfe + - 0c178ac9-f51d-4dbf-aee6-dc107ca6b7b9 status: 200 OK code: 200 duration: "" @@ -789,8 +2971,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e/settings + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b/settings method: PUT response: body: '{"settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", @@ -805,9 +2987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:02 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -815,65 +2997,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5133302f-24a8-4667-807f-edfb70bb37cd + - 27d79c13-3950-4229-bc0c-d7a55345fc2d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", + "port":5417, "name":null, "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: PATCH response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", + "port":5417, "name":null, "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:02 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,63 +3059,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38afd5b3-6e10-4cd1-9897-5e9cd328b7e9 + - 59b60e67-d337-44b4-ab4b-a9c80c0d18f3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", + "port":5417, "name":null, "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", + "port":5417, "name":null, "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:02 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -945,63 +3119,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f619e67-633c-4c0f-a660-bed5b77190ef + - 40ef76b8-8469-449a-b4ce-42d0ec2c3177 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", + "port":5417, "name":null, "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", + "port":5417, "name":null, "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:17 GMT + - Tue, 07 Jan 2025 14:50:44 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1009,63 +3179,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3926c585-1218-426f-81f9-20e2b077d520 + - 9d23f13d-c4e1-436d-9d13-b870260fad7a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: GET response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:33 GMT + - Tue, 07 Jan 2025 14:51:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1073,63 +3239,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2d99814-4f17-474b-989d-32c6a5f9bd4e + - 4a77deef-9a79-46ca-a09a-d3852560b0a8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/13aae9e6-4749-477b-b77c-2f3bcff0d75e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d306cf1c-c111-498e-b48b-0b099ba3687b method: DELETE response: - body: '{"id":"13aae9e6-4749-477b-b77c-2f3bcff0d75e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5065, "name":null, "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d306cf1c-c111-498e-b48b-0b099ba3687b", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.114045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.811823Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5065, "name":null, - "id":"2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":5417, "name":null, + "id":"8834804a-b146-4719-8d0d-de6c114ee328", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.114045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.811823Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:33 GMT + - Tue, 07 Jan 2025 14:51:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1137,7 +3299,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85b4693d-ca68-419d-85bb-d1adacaf99c2 + - fd6bcea0-ae6b-4e1c-bb67-f20455e6952c status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.golden b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.golden index bf06a159b..b7e43f840 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.golden +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify-default-work-mem-from4-to8mb.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID 13aae9e6-4749-477b-b77c-2f3bcff0d75e -Name cli-test -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID 2c4e37dc-fec4-413f-8eb9-05f52dde7f9b -Endpoints.0.IP 51.159.204.209 -Endpoints.0.Port 5065 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID d306cf1c-c111-498e-b48b-0b099ba3687b +Name cli-test +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID 8834804a-b146-4719-8d0d-de6c114ee328 +Endpoints.0.IP 51.159.74.117 +Endpoints.0.Port 5417 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID 2c4e37dc-fec4-413f-8eb9-05f52dde7f9b -IP 51.159.204.209 -Port 5065 +ID 8834804a-b146-4719-8d0d-de6c114ee328 +IP 51.159.74.117 +Port 5417 Volume: Type lssd @@ -61,36 +50,17 @@ work_mem 8 "class": "lssd" }, "region": "fr-par", - "id": "13aae9e6-4749-477b-b77c-2f3bcff0d75e", + "id": "d306cf1c-c111-498e-b48b-0b099ba3687b", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", - "ip": "51.159.204.209", - "port": 5065, + "id": "8834804a-b146-4719-8d0d-de6c114ee328", + "ip": "51.159.74.117", + "port": 5417, "name": null, "load_balancer": {} }, @@ -133,9 +103,9 @@ work_mem 8 "init_settings": [], "endpoints": [ { - "id": "2c4e37dc-fec4-413f-8eb9-05f52dde7f9b", - "ip": "51.159.204.209", - "port": 5065, + "id": "8834804a-b146-4719-8d0d-de6c114ee328", + "ip": "51.159.74.117", + "port": 5417, "name": null, "load_balancer": {} } @@ -146,5 +116,7 @@ work_mem 8 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.cassette.yaml index c74a8e345..15bab046a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b8ae607-a16e-463d-a6cc-ef68de12b370 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 312fbe7d-4d7d-44f4-911c-a5e6820b7b34 + - bc373ee1-7e8c-4c68-98bd-63f7dc79fd50 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce3a5c8-64e2-421c-afee-245ee2b57c33 + - f2ecf79a-4278-4db8-afe3-7aceec0860a2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:26 GMT + - Tue, 07 Jan 2025 14:47:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c115ba6-8c04-482b-b702-fe6d8a261211 + - dacbcc75-672e-4d09-b53b-ee60d3563e13 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:41 GMT + - Tue, 07 Jan 2025 14:47:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9579e54-e100-4526-b157-c1685433acd2 + - f400b1bd-9759-426a-9eeb-2cd44bb267cd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:56 GMT + - Tue, 07 Jan 2025 14:47:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cafbd1be-0b8c-47a2-8b3b-179a9a94b626 + - 71235915-cbb0-49fe-8999-c835cf77f06e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:11 GMT + - Tue, 07 Jan 2025 14:47:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abc69a8d-8aaa-4248-8fa0-6400ca271af1 + - cd34e8be-d8d6-451a-9c27-622dcb712564 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:27 GMT + - Tue, 07 Jan 2025 14:48:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e24eb25-6fe1-47c6-a5f5-da342b49c032 + - 3c373f98-4c26-4521-a480-a7923aed72f9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:42 GMT + - Tue, 07 Jan 2025 14:48:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67dcf1f6-d65f-476a-be2b-6fcd176aa45a + - 6bbefba0-a66e-4078-98bf-32dfca795ce2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:57 GMT + - Tue, 07 Jan 2025 14:48:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35ebf3d1-2b22-47a8-b7e8-dd9add62eda4 + - 9f8f4bcb-f4ba-4e7b-9762-d7a205c06fee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:13 GMT + - Tue, 07 Jan 2025 14:48:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f4a2a32-2e93-4a9a-95c6-63fe0434ffd6 + - 0148ae29-37fb-4bff-a583-828d48a14f03 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:28 GMT + - Tue, 07 Jan 2025 14:49:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c101e8ac-73b4-4d9c-ab83-4028da486a1e + - 37d8e6dd-5df7-4db0-be58-3f90a5e04bb3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52da2e46-39f2-45e1-8895-c1eb8f677f48 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 + method: GET + response: + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:43 GMT + - Tue, 07 Jan 2025 14:49:43 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,59 +2729,107 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e569bebe-defb-47b7-9c12-476dca750f87 + - 6b2d4a74-f89c-4551-9d3e-9107495418c0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:10.897323Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:10.897323Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dfea6ad5-3c83-4efa-b36e-7021b11f54eb + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 + method: GET + response: + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.840509Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:58 GMT + - Tue, 07 Jan 2025 14:50:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c2e0e1d-b225-4c51-8df6-642c2b4da91f + - fc52c9a8-0e45-47b1-a296-08a821db631b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:13 GMT + - Tue, 07 Jan 2025 14:50:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -771,63 +2897,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8e248f8-b5f9-44ba-a009-aa2152544c69 + - d5acdb3a-80d7-4782-b76a-d42f9f045ab3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:13 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -835,7 +2957,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43810a6f-2bbb-496e-9c76-d042e7d5037b + - 7719bf14-b81c-4bd5-81c0-827cfd225967 status: 200 OK code: 200 duration: "" @@ -849,8 +2971,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305/settings + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49/settings method: PUT response: body: '{"settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", @@ -865,9 +2987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:14 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -875,65 +2997,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf048fed-f0e1-4638-a2a3-a168911a0d7a + - e1af8914-0d95-4ee0-a2fa-45c738eb09dd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: PATCH response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:14 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,63 +3059,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb95d74b-3ef1-4c3a-ae5b-dbe55469880d + - 18ec93cf-0465-43ed-8d34-aabf6bd78f28 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:14 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1005,63 +3119,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edc80e00-e60f-4e53-a130-202b7b43abe8 + - 789317ff-8e64-4887-b6d0-4e3e9c4be26d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1579" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:30 GMT + - Tue, 07 Jan 2025 14:50:44 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1069,63 +3179,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f8a9178-6ad8-4128-a843-86fe37b6e11c + - 08d2a3cb-05a9-4f7e-ae1b-7158357ed1c2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1573" + - "1279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:45 GMT + - Tue, 07 Jan 2025 14:51:00 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1133,63 +3239,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b2e88d7-e78d-42d5-9f5a-b8f0665e21ce + - b56ee559-49d8-4899-8540-4abf24d42ed1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo1", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1573" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:45 GMT + - Tue, 07 Jan 2025 14:51:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,39 +3299,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16e8d946-2374-48e7-8db4-3c9453e2c3ff + - 321a580d-0e58-4e91-bc53-a8b189e8cf2b status: 200 OK code: 200 duration: "" - request: - body: '{"settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", - "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"16"}]}' + "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305/settings - method: PUT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 + method: GET response: - body: '{"settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", - "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo1", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1000"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"200"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"16"}]}' + "value":"8"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "291" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:48 GMT + - Tue, 07 Jan 2025 14:51:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1237,65 +3359,39 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4909feb9-986f-4221-aacd-ab64ade359b8 + - 32ddf0e7-3c07-47ff-b908-dd39629ad956 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", + body: '{"settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "value":"16"}]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49/settings + method: PUT response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", + body: '{"settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "value":"16"}]}' headers: Content-Length: - - "1580" + - "291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:48 GMT + - Tue, 07 Jan 2025 14:51:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1303,63 +3399,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bd6ae46-cd73-4ab9-8638-717c99f96d10 + - 85f0425c-ef4d-4708-8499-9eb31b3fda63 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 + method: PATCH response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:49 GMT + - Tue, 07 Jan 2025 14:51:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1367,63 +3461,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22d300a8-5d1c-4356-b8a5-32cfdbfe05b1 + - a97d2f49-a55e-430c-8333-9fd281440f91 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:04 GMT + - Tue, 07 Jan 2025 14:51:15 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1431,63 +3521,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef617fd6-a7dc-4619-a197-60e4081629e4 + - 97608b6f-8de6-4d22-a61b-c04e16895512 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", + "port":12333, "name":null, "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:19 GMT + - Tue, 07 Jan 2025 14:51:31 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,63 +3581,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70226b81-9db6-42ec-9c51-ad1f63784031 + - 1e79f49a-abc4-468d-9d04-1345cb9a6259 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: GET response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1574" + - "1274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:34 GMT + - Tue, 07 Jan 2025 14:51:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1559,63 +3641,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ce51df9-66d1-4b8e-92d1-00f24c3cfc2e + - 6c5c9c18-2af8-4e92-a824-4d3d53d1b37f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a5659442-e0eb-429a-9524-ae3594e6da49 method: DELETE response: - body: '{"id":"7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", "name":"foo2", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":13182, "name":null, "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", + body: '{"id":"a5659442-e0eb-429a-9524-ae3594e6da49", "name":"foo2", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1200"}, {"name":"maintenance_work_mem", "value":"200"}, {"name":"max_connections", "value":"150"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"16"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.897323Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.840509Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":13182, "name":null, - "id":"152876ca-86ad-4057-8241-fca771c2b0b7", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":12333, "name":null, + "id":"e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.897323Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.840509Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:35 GMT + - Tue, 07 Jan 2025 14:51:46 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1623,7 +3701,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebf1870b-64d9-4c9a-acc3-c0c759c88a9d + - 37f58e3a-4a77-4ce6-ae7f-f328a4b48d5a status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.golden b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.golden index 1c5189daf..2944197ec 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.golden +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-modify3-settings+-add-a-new-one.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID 7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305 -Name foo2 -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID 152876ca-86ad-4057-8241-fca771c2b0b7 -Endpoints.0.IP 51.159.204.209 -Endpoints.0.Port 13182 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID a5659442-e0eb-429a-9524-ae3594e6da49 +Name foo2 +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d +Endpoints.0.IP 195.154.69.220 +Endpoints.0.Port 12333 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID 152876ca-86ad-4057-8241-fca771c2b0b7 -IP 51.159.204.209 -Port 13182 +ID e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d +IP 195.154.69.220 +Port 12333 Volume: Type lssd @@ -61,36 +50,17 @@ work_mem 16 "class": "lssd" }, "region": "fr-par", - "id": "7951c0e2-9ff6-4bd0-b9d3-8a5bf7105305", + "id": "a5659442-e0eb-429a-9524-ae3594e6da49", "name": "foo2", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "152876ca-86ad-4057-8241-fca771c2b0b7", - "ip": "51.159.204.209", - "port": 13182, + "id": "e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", + "ip": "195.154.69.220", + "port": 12333, "name": null, "load_balancer": {} }, @@ -133,9 +103,9 @@ work_mem 16 "init_settings": [], "endpoints": [ { - "id": "152876ca-86ad-4057-8241-fca771c2b0b7", - "ip": "51.159.204.209", - "port": 13182, + "id": "e1e87bb7-3e2f-4d36-ab2f-5d74a0e8672d", + "ip": "195.154.69.220", + "port": 12333, "name": null, "load_balancer": {} } @@ -146,5 +116,7 @@ work_mem 16 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.cassette.yaml index af34b02cc..6601ed476 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 958e1414-74d3-496f-8904-33593517fac3 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09a6d735-faab-4b8e-a4e9-34746833b3dd + - 735c6c91-2533-480f-9f69-df79791217ab status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e79613ae-0904-4ad7-a043-c594e9d9fa4f + - 4250070b-6f71-4f1c-af77-d2085acd5787 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:26 GMT + - Tue, 07 Jan 2025 14:47:11 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e041fc4-9fa0-4e1a-b50e-8d2922cfdd96 + - 40ee47ec-ebe2-4c9e-8c10-4052c72d8404 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:41 GMT + - Tue, 07 Jan 2025 14:47:26 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6763f3ad-8d73-48f8-8b03-28f843d8f2cb + - 20dc2bcc-543c-4441-aa05-9c7deef3e67b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:56 GMT + - Tue, 07 Jan 2025 14:47:41 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85c8156f-a160-4a5d-9974-a47765f0c568 + - ed48600a-a474-4aa9-8dcd-27336483dab8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:12 GMT + - Tue, 07 Jan 2025 14:47:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8435d34-8d9e-4d92-967c-16e30796a781 + - 19b3896b-459f-48fc-a650-45bdd061479a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:27 GMT + - Tue, 07 Jan 2025 14:48:11 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 178f6bf5-ddc9-4dcd-bebb-b19dd1235ee3 + - 6722317a-da35-43f2-bef6-cf4ffdf89d9d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:42 GMT + - Tue, 07 Jan 2025 14:48:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f34d5e1d-01f6-4118-9efc-57e4c4fc98de + - c52c4332-d9ff-426e-abd7-252d570c016e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:57 GMT + - Tue, 07 Jan 2025 14:48:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e00d4c5-8a0a-4f55-86e8-f9c34e6ee4e7 + - c7668bfc-f7d0-4e1b-b197-fef2c12f03c5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:12 GMT + - Tue, 07 Jan 2025 14:48:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bfe8532-7b4b-4f0c-8382-2a88e3f7deb5 + - fd86564b-d141-470f-9dee-7c40bbedae9b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:28 GMT + - Tue, 07 Jan 2025 14:49:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc89890a-2ac8-480d-80f9-870979f0409d + - 7031e536-0c12-425c-8058-5dd58bc95a96 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:43 GMT + - Tue, 07 Jan 2025 14:49:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,53 +2681,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5e8937-24f3-4268-822b-cc448f1bbadc + - 1b7cdb26-0307-4596-98d8-d93c7fa99014 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:58 GMT + - Tue, 07 Jan 2025 14:49:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,59 +2729,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d1c89d7-acd3-4bac-8638-210e19ecd74a + - 9c64c300-b914-4412-acfb-1effc3f7b120 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:13 GMT + - Tue, 07 Jan 2025 14:49:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,59 +2777,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71331431-89cb-4332-b531-bae26b365a0c + - f3089d96-db1e-445f-9460-39cdda8ba6f8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:28 GMT + - Tue, 07 Jan 2025 14:50:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -821,59 +2825,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebee631e-3c3c-4806-b61b-dbc8953a477e + - d8be8dae-4bec-4449-9e87-76f2ecd1e9ab status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:43 GMT + - Tue, 07 Jan 2025 14:50:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,59 +2879,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c304d32-2e5a-477a-8159-32d11661b40b + - 93b04333-51d8-42ab-8381-4bafd45402e2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823681Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:33:59 GMT + - Tue, 07 Jan 2025 14:50:43 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -941,63 +2933,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d46c361f-fade-4e9e-a33f-3f50a6ce910d + - d01bf520-6ba0-46e3-9995-b12c8399facb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":28272, "name":null, - "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":28272, "name":null, - "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:15 GMT + - Tue, 07 Jan 2025 14:50:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1005,63 +2993,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 988bee94-0c49-4043-a4f9-e64744ea3c4d + - 65fdb6ee-ca57-4499-84fd-a7f3e88f447c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":28272, "name":null, - "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.103548Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.197.99", "port":28272, "name":null, - "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:15 GMT + - Tue, 07 Jan 2025 14:50:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1069,7 +3053,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b8c6075-b52e-4c35-b751-d37877accb1f + - c99d1568-41f6-4477-91a9-42ec769cf8f5 status: 200 OK code: 200 duration: "" @@ -1083,8 +3067,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf/settings + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58/settings method: PUT response: body: '{"settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", @@ -1099,9 +3083,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:15 GMT + - Tue, 07 Jan 2025 14:50:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1109,65 +3093,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c325b1e0-2d14-4f07-a709-333d3db8f500 + - cf11782e-f1e6-4e5f-8ba5-e75dab38038e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: PATCH response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1619" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:15 GMT + - Tue, 07 Jan 2025 14:50:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1175,63 +3155,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 555bccf9-c7b4-40d4-83ec-ecff4dc48c96 + - d39a6e9f-3842-4eed-bb8b-64dcfd5b7384 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1619" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:16 GMT + - Tue, 07 Jan 2025 14:50:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1239,63 +3215,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 869288cb-16d8-48c2-a84f-9e1cbe875305 + - 8f214eee-da61-492d-bc9c-841fb23b18c5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"configuring", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"configuring", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1619" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:31 GMT + - Tue, 07 Jan 2025 14:51:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1303,63 +3275,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35d96630-c314-4462-ba45-dc686cda1544 + - 10c42d19-f5d5-467b-8137-97017c779d22 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: GET response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1613" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:50 GMT + - Tue, 07 Jan 2025 14:51:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1367,63 +3335,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b433a8f-5130-4c7d-816f-ea7f27cb91fc + - 61518a23-1b6a-4619-9a1d-07b9610ca013 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6ca91c27-8a20-4422-bb69-04fb9909e7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/9c8f59ad-b566-4734-a47e-f7877dbb6f58 method: DELETE response: - body: '{"id":"6ca91c27-8a20-4422-bb69-04fb9909e7bf", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":19874, "name":null, + "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"timezone", "value":"UTC"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2023-11-09T21:30:11.103548Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:46:55.823681Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"195.154.197.99", - "port":28272, "name":null, "id":"1e6b1836-59ab-41be-85e3-81a92c35d7be", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.8.181", + "port":19874, "name":null, "id":"65012218-d264-479f-9bbc-c2974b7bd257", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2023-11-08T21:30:11.103548Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823681Z", + "region":"fr-par"}' headers: Content-Length: - - "1616" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:34:50 GMT + - Tue, 07 Jan 2025 14:51:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1431,7 +3395,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0ff8cce-93fa-4687-83ad-ee5c1d28dc04 + - 5976d225-83a7-42fd-9c88-cd8059c3e3d5 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.golden b/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.golden index 2a8e81b76..3750621e6 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.golden +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-set-a-timezone.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID 6ca91c27-8a20-4422-bb69-04fb9909e7bf -Name cli-test -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID 1e6b1836-59ab-41be-85e3-81a92c35d7be -Endpoints.0.IP 195.154.197.99 -Endpoints.0.Port 28272 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID 9c8f59ad-b566-4734-a47e-f7877dbb6f58 +Name cli-test +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID 65012218-d264-479f-9bbc-c2974b7bd257 +Endpoints.0.IP 51.159.8.181 +Endpoints.0.Port 19874 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID 1e6b1836-59ab-41be-85e3-81a92c35d7be -IP 195.154.197.99 -Port 28272 +ID 65012218-d264-479f-9bbc-c2974b7bd257 +IP 51.159.8.181 +Port 19874 Volume: Type lssd @@ -62,36 +51,17 @@ work_mem 4 "class": "lssd" }, "region": "fr-par", - "id": "6ca91c27-8a20-4422-bb69-04fb9909e7bf", + "id": "9c8f59ad-b566-4734-a47e-f7877dbb6f58", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "1e6b1836-59ab-41be-85e3-81a92c35d7be", - "ip": "195.154.197.99", - "port": 28272, + "id": "65012218-d264-479f-9bbc-c2974b7bd257", + "ip": "51.159.8.181", + "port": 19874, "name": null, "load_balancer": {} }, @@ -138,9 +108,9 @@ work_mem 4 "init_settings": [], "endpoints": [ { - "id": "1e6b1836-59ab-41be-85e3-81a92c35d7be", - "ip": "195.154.197.99", - "port": 28272, + "id": "65012218-d264-479f-9bbc-c2974b7bd257", + "ip": "51.159.8.181", + "port": 19874, "name": null, "load_balancer": {} } @@ -151,5 +121,7 @@ work_mem 4 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.cassette.yaml index a043755d0..898d8769c 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c38c3e5e-c7c9-4958-b05d-fba08a7b3303 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8583175d-119c-4fa7-ac82-b0b58a29b0cc + - 552a6fac-5e52-4806-962e-c963487aabc5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f55682de-1058-4787-a171-a3e3d70eb633 + - f41c3e0a-ab6e-4db2-b9f1-83ce12d79b1c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:26 GMT + - Tue, 07 Jan 2025 14:47:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7064d3c4-41af-4414-8e3f-f330aece55ae + - c3ac726f-00d4-4142-8680-e4a3c6e5e692 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:41 GMT + - Tue, 07 Jan 2025 14:47:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad716a8d-1efa-4d66-9313-645a39bd8e57 + - 022e74e0-2c2d-4e11-8088-bc7e4dd4143a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:58 GMT + - Tue, 07 Jan 2025 14:47:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc9ffee1-58b0-4217-8102-0e58a52f2061 + - 0c88b57b-3102-4c9a-8806-ca64afecb8e4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:13 GMT + - Tue, 07 Jan 2025 14:47:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44898804-a899-4466-b078-af1e25c8f0e3 + - 82723749-6a21-4a95-acc6-57216f5319ff status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:29 GMT + - Tue, 07 Jan 2025 14:48:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c141a98-8099-4ad7-b60f-03425f1c954b + - aed17c22-abc1-4af5-8578-56e616135e71 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:44 GMT + - Tue, 07 Jan 2025 14:48:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb7a67be-16c0-4c6f-8f8f-d4932e4bb269 + - 8894fc99-089e-4a9d-9c88-208860744eee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:59 GMT + - Tue, 07 Jan 2025 14:48:43 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ee36af5-e46a-4ea6-b3ea-d8c69b3e84b4 + - 753398b3-a173-419f-8e0d-78107f3a5e25 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:14 GMT + - Tue, 07 Jan 2025 14:48:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,245 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9f972c6-ad0c-4028-beba-ed4a178c9cdb + - bf8bf1d1-2f9e-4280-969c-12496fe3b118 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - acebf248-fc81-4e7b-8852-0968bf4ac277 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 + method: GET + response: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc49a8c8-363c-4438-a51c-3ccafd9820a8 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 + method: GET + response: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16b16ffd-2cf1-44d6-a3a8-e5ebc798355e + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 + method: GET + response: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:59 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 267addb1-0266-433c-92e9-78e2fdc55997 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 + method: GET + response: + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.876410Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:29 GMT + - Tue, 07 Jan 2025 14:50:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,63 +2831,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccf40a86-e20d-4fa7-9fe9-f4979148a7bf + - bed3d402-3c4e-4cc2-a287-bd6e7bdcb0d4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:44 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -657,63 +2891,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cf43c7c-6fbd-4ae1-860f-a436dd278a40 + - d37f0dee-4528-4262-bbdb-4b31af8dafd8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:45 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -721,65 +2951,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11fe2fb3-e1db-4e31-aae7-d7b8897a92da + - 976647c9-c485-4846-99f6-0e2f587b4c7f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"foo", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"foo", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: PATCH response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"foo", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"foo", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' headers: Content-Length: - - "1572" + - "1272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:45 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,63 +3013,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03cb5104-b106-46c2-acfd-f0affbc84acd + - 70017894-9a52-4b32-a490-11679b62190a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"foo", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"foo", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: GET response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"foo", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"foo", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' headers: Content-Length: - - "1572" + - "1272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:46 GMT + - Tue, 07 Jan 2025 14:50:29 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -851,63 +3073,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b4393aa-868f-4e5c-94a8-1df05808fbdc + - dce02050-540b-4a13-9247-1249e751ed5a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"foo", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"foo", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/0b6621af-f600-47fa-ad10-9b663c2bd412 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d08636c8-0696-44c3-b20b-e0c29a397106 method: DELETE response: - body: '{"id":"0b6621af-f600-47fa-ad10-9b663c2bd412", "name":"foo", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":29073, "name":null, "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d08636c8-0696-44c3-b20b-e0c29a397106", "name":"foo", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:10.903045Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.876410Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":29073, "name":null, - "id":"929184f7-7f67-494d-a538-0e76ddb28ce2", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":10635, "name":null, + "id":"c1419b65-cb75-4dee-8160-8ca0a7212318", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:10.903045Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.876410Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:50 GMT + - Tue, 07 Jan 2025 14:50:30 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -915,7 +3133,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12f21791-04eb-4925-8f0b-bdc3f9a43f92 + - 5c19c8b7-9efd-4f57-be0e-f47592858bc0 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.golden b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.golden index 80bd9c7bd..9ccf84cfd 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.golden +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-name.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID 0b6621af-f600-47fa-ad10-9b663c2bd412 -Name foo -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID 929184f7-7f67-494d-a538-0e76ddb28ce2 -Endpoints.0.IP 51.159.204.209 -Endpoints.0.Port 29073 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID d08636c8-0696-44c3-b20b-e0c29a397106 +Name foo +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID c1419b65-cb75-4dee-8160-8ca0a7212318 +Endpoints.0.IP 195.154.69.220 +Endpoints.0.Port 10635 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID 929184f7-7f67-494d-a538-0e76ddb28ce2 -IP 51.159.204.209 -Port 29073 +ID c1419b65-cb75-4dee-8160-8ca0a7212318 +IP 195.154.69.220 +Port 10635 Volume: Type lssd @@ -61,36 +50,17 @@ work_mem 4 "class": "lssd" }, "region": "fr-par", - "id": "0b6621af-f600-47fa-ad10-9b663c2bd412", + "id": "d08636c8-0696-44c3-b20b-e0c29a397106", "name": "foo", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "929184f7-7f67-494d-a538-0e76ddb28ce2", - "ip": "51.159.204.209", - "port": 29073, + "id": "c1419b65-cb75-4dee-8160-8ca0a7212318", + "ip": "195.154.69.220", + "port": 10635, "name": null, "load_balancer": {} }, @@ -133,9 +103,9 @@ work_mem 4 "init_settings": [], "endpoints": [ { - "id": "929184f7-7f67-494d-a538-0e76ddb28ce2", - "ip": "51.159.204.209", - "port": 29073, + "id": "c1419b65-cb75-4dee-8160-8ca0a7212318", + "ip": "195.154.69.220", + "port": 10635, "name": null, "load_balancer": {} } @@ -146,5 +116,7 @@ work_mem 4 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.cassette.yaml index 34bbf5843..50f36599a 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:46:55 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b341196-0328-4a8b-aa3f-e4d0d8a97ee2 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75cd975f-f30d-4a26-a565-b8b3f4b019c7 + - a202e018-55af-4bac-b625-842dc4686b41 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:11 GMT + - Tue, 07 Jan 2025 14:46:56 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2170a31-aa92-4e77-8aba-c4deeb4951a9 + - 26ad16db-e7ec-4585-8407-d9e9d0e2afe8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:26 GMT + - Tue, 07 Jan 2025 14:47:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1046241-255c-47f8-abc7-dbefb378a38d + - 0173b79e-f107-4d24-a9ef-743de5a1c8a1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:41 GMT + - Tue, 07 Jan 2025 14:47:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0192d2e-818a-4c73-bb13-2abfdd753364 + - b1fe5136-5441-47d2-9f42-908aaba32366 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:57 GMT + - Tue, 07 Jan 2025 14:47:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae9087b9-0f30-445b-82e5-cf06d1d6b76b + - 72e30395-8e66-4b3e-9cc8-155c8a7d16a2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:12 GMT + - Tue, 07 Jan 2025 14:47:57 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30decef0-c488-495d-9ba1-45d81ce021f9 + - 56d0b011-d29c-4f99-97f7-699e51116eeb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:27 GMT + - Tue, 07 Jan 2025 14:48:12 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6722acbf-0b5c-4772-82ec-8b9f6b177d01 + - 92d0c45d-1081-4983-a902-26352381fb4a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:42 GMT + - Tue, 07 Jan 2025 14:48:27 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b385592f-e1a6-4662-808f-952d9bc1d591 + - fb69b1ad-27bc-4539-866e-b066a181cae3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:31:57 GMT + - Tue, 07 Jan 2025 14:48:42 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,143 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a276c21a-8d51-4028-ba02-e26aa8851b60 + - 719ed092-c4ef-48fd-b086-9984d79226ba status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:48:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba310b9a-0443-4bc2-867c-c1a3085c20fa + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d + method: GET + response: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09075590-cf1f-4441-acbd-fc655b2b0d30 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d + method: GET + response: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:12 GMT + - Tue, 07 Jan 2025 14:49:28 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,59 +2681,101 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68177016-52b7-4bc4-ac4d-ee3e4e66dd0f + - ed061bf4-178f-4e32-b580-b766538e7b42 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d + method: GET + response: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:49:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08378792-0a83-4558-856a-c2ef0810144b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.071019Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:30:11.071019Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:46:55.823045Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:28 GMT + - Tue, 07 Jan 2025 14:49:58 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,63 +2783,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9369fc9-4595-4444-b30e-601dfd067bd5 + - b3119202-ba7d-4632-86e4-0d68750aaec9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:43 GMT + - Tue, 07 Jan 2025 14:50:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -663,63 +2843,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 330e0cdd-feec-415b-9ccd-cba9c45e9b91 + - d0d1cf4f-65fa-4fcf-a3b3-34da6ffffe31 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:43 GMT + - Tue, 07 Jan 2025 14:50:13 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -727,65 +2903,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63550fc2-5f58-4b6a-aaef-fb721bce6891 + - c1fcb3fa-bd97-4c04-ac7b-e744785796fc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":["a"], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":["a"], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: PATCH response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":["a"], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":["a"], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:43 GMT + - Tue, 07 Jan 2025 14:50:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,63 +2965,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 252956b9-bf95-4174-9aa1-4410bcddc71d + - 5ffcd36d-65b6-4a95-bdbe-4d82c598f754 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":["a"], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":["a"], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: GET response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":["a"], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":["a"], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:43 GMT + - Tue, 07 Jan 2025 14:50:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -857,63 +3025,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d058fe96-b1a5-41c6-91c6-aa3b18dde8d6 + - bbb0ecd0-12cb-4922-9386-546fcf6f1cae status: 200 OK code: 200 duration: "" - request: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":["a"], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":["a"], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/790c2cf2-7339-4888-85b2-300a953e790d method: DELETE response: - body: '{"id":"d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24053, "name":null, "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}, - "tags":["a"], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"790c2cf2-7339-4888-85b2-300a953e790d", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}, "tags":["a"], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:30:11.071019Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:46:55.823045Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24053, "name":null, - "id":"fb8a0a8d-766f-4fdf-86cb-522abc58eca5", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":11119, "name":null, + "id":"67f04d0a-5b9e-4bc2-8346-7f271b34d12b", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:30:11.071019Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:46:55.823045Z", + "region":"fr-par"}' headers: Content-Length: - - "1583" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:32:44 GMT + - Tue, 07 Jan 2025 14:50:14 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -921,7 +3085,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c325867-828c-4576-a977-4dd4ac412ef9 + - 905a8d37-bf16-4c43-bbb0-49bd867f57ab status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.golden b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.golden index 8c0efa558..3b3dd3908 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.golden +++ b/internal/namespaces/rdb/v1/testdata/test-update-instance-update-instance-tags.golden @@ -1,38 +1,27 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8 -Name cli-test -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -Tags.0 a -IsHaCluster false -NodeType db-dev-s -Endpoints.0.ID fb8a0a8d-766f-4fdf-86cb-522abc58eca5 -Endpoints.0.IP 51.159.204.209 -Endpoints.0.Port 24053 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID 790c2cf2-7339-4888-85b2-300a953e790d +Name cli-test +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +Tags.0 a +IsHaCluster false +NodeType db-dev-s +Endpoints.0.ID 67f04d0a-5b9e-4bc2-8346-7f271b34d12b +Endpoints.0.IP 51.159.74.117 +Endpoints.0.Port 11119 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID fb8a0a8d-766f-4fdf-86cb-522abc58eca5 -IP 51.159.204.209 -Port 24053 +ID 67f04d0a-5b9e-4bc2-8346-7f271b34d12b +IP 51.159.74.117 +Port 11119 Volume: Type lssd @@ -62,36 +51,17 @@ work_mem 4 "class": "lssd" }, "region": "fr-par", - "id": "d5ecdbab-312b-4043-a9cf-1ed18bd7ffb8", + "id": "790c2cf2-7339-4888-85b2-300a953e790d", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "fb8a0a8d-766f-4fdf-86cb-522abc58eca5", - "ip": "51.159.204.209", - "port": 24053, + "id": "67f04d0a-5b9e-4bc2-8346-7f271b34d12b", + "ip": "51.159.74.117", + "port": 11119, "name": null, "load_balancer": {} }, @@ -136,9 +106,9 @@ work_mem 4 "init_settings": [], "endpoints": [ { - "id": "fb8a0a8d-766f-4fdf-86cb-522abc58eca5", - "ip": "51.159.204.209", - "port": 24053, + "id": "67f04d0a-5b9e-4bc2-8346-7f271b34d12b", + "ip": "51.159.74.117", + "port": 11119, "name": null, "load_balancer": {} } @@ -149,5 +119,7 @@ work_mem 4 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-update-user-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-user-simple.cassette.yaml index 8f9303bac..12d0a30df 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-user-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-user-simple.cassette.yaml @@ -2,104 +2,2100 @@ version: 1 interactions: - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST - response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' - headers: - Content-Length: - - "1083" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Nov 2023 21:43:10 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62131ccf-e61e-4616-8759-e76e6bee7aae - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' headers: Content-Length: - - "1083" + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:10 GMT + - Tue, 07 Jan 2025 15:08:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,107 +2103,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd2c404-0467-475a-886d-d62b9124ff7b + - 95803064-9183-4b5b-8890-0f355178b623 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e - method: GET - response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' - headers: - Content-Length: - - "1083" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Wed, 08 Nov 2023 21:43:25 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d062ec1c-aa43-4c07-a19a-231312df352d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:41 GMT + - Tue, 07 Jan 2025 15:08:50 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97401e0c-7677-434f-8b58-96699a617fd1 + - e04693ba-4ab5-46e4-b837-ce499c7a82fb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:56 GMT + - Tue, 07 Jan 2025 15:08:50 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c946f96-7a1f-4a09-b49a-95eed568e5f0 + - 64b2f8de-a761-47b8-b7d2-c72c6da6941d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:11 GMT + - Tue, 07 Jan 2025 15:09:05 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5580f270-5696-4374-8333-26a3f3025e74 + - 46c845dd-e174-4a16-97f0-7c1311e2d622 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:26 GMT + - Tue, 07 Jan 2025 15:09:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fd93bed-0dad-4f57-937b-dafa92a94367 + - 889b8cd3-ac63-4c0d-8cd0-f8707a2dffc4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:42 GMT + - Tue, 07 Jan 2025 15:09:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c4d08c2-0458-4fe2-a453-3381162326f4 + - ffdf3575-668c-4552-8e49-1ab5dfbe07bb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:57 GMT + - Tue, 07 Jan 2025 15:09:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 095dcecd-db2b-485d-8519-ff3a425b8179 + - 7c343378-2c60-45bf-a3b4-ea3036676a0e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:12 GMT + - Tue, 07 Jan 2025 15:10:06 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e163009e-03f4-4736-98d5-3efc589ef661 + - fa9e3da4-ec03-4038-a3e3-4c87c8ba0b5f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:27 GMT + - Tue, 07 Jan 2025 15:10:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72879dff-ac01-4c3d-adca-593918c39033 + - 4f63074c-c482-4774-b309-496d07684ea2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:42 GMT + - Tue, 07 Jan 2025 15:10:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -647,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa96ae2a-ebc4-49ef-ba39-dc7d88a09acd + - c7d5e90f-2ac7-4605-a5e7-e5703a1ddb79 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:58 GMT + - Tue, 07 Jan 2025 15:10:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,59 +2585,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a40af16d-c2af-45fc-b9f8-6e7374d7694c + - 98a37c21-a74f-412f-97e0-8a3ff2a6109c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:43:10.559981Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:43:10.559981Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.255363Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:13 GMT + - Tue, 07 Jan 2025 15:11:06 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -761,63 +2639,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0c3eeaa-e357-4374-acbe-d1027ee0dadd + - cfc0dc67-da91-4535-961a-0915bb7b9c41 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5871, "name":null, "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5871, "name":null, - "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.255363Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: GET response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5871, "name":null, "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5871, "name":null, - "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.255363Z", + "region":"fr-par"}' headers: Content-Length: - - "1575" + - "1275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:29 GMT + - Tue, 07 Jan 2025 15:11:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -825,7 +2699,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6772773-dec8-49bf-92c7-8dbf01538b07 + - c9c76eeb-074b-4248-a1fb-f9b1e2dccf32 status: 200 OK code: 200 duration: "" @@ -836,8 +2710,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e/users + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798/users method: POST response: body: '{"name":"cli-test", "is_admin":false}' @@ -849,9 +2723,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:29 GMT + - Tue, 07 Jan 2025 15:11:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -859,7 +2733,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c130f2a7-e01a-4ef3-8dc1-0e4ba57a5461 + - 8c3152cf-cd3c-42b3-8f5a-e26a1990f480 status: 200 OK code: 200 duration: "" @@ -870,8 +2744,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e/users/cli-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798/users/cli-test method: PATCH response: body: '{"name":"cli-test", "is_admin":true}' @@ -883,9 +2757,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:29 GMT + - Tue, 07 Jan 2025 15:11:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,63 +2767,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43fc6d25-1cac-4dca-bb4a-7bd2c49d3971 + - 9c31931b-e178-45c8-8125-b5cb2cb1bfa3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5871, "name":null, "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5871, "name":null, - "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.255363Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/3597ba07-0778-47a1-a91e-699ff6d8dc5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ec525c59-4cb7-455e-a66d-50a5e98c7798 method: DELETE response: - body: '{"id":"3597ba07-0778-47a1-a91e-699ff6d8dc5e", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":5871, "name":null, "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"ec525c59-4cb7-455e-a66d-50a5e98c7798", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.559981Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.255363Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":5871, "name":null, - "id":"83c59527-162b-4a50-992c-1be5f0aadfca", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.74.117", "port":20870, "name":null, + "id":"c755e0c3-3e78-4b9c-b21e-81eb9383472f", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.559981Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.255363Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:29 GMT + - Tue, 07 Jan 2025 15:11:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -957,7 +2827,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af56e5b3-230b-4d5b-9fa1-d9326d4af3ed + - 48fe05cc-8aeb-434f-8777-fef21f51248b status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-update-user-with-password-generator.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-update-user-with-password-generator.cassette.yaml index e23347314..d15b74a65 100644 --- a/internal/namespaces/rdb/v1/testdata/test-update-user-with-password-generator.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-update-user-with-password-generator.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:08:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08b03c29-2f68-4d18-93b7-cd2bbcc06e6c + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:10 GMT + - Tue, 07 Jan 2025 15:08:50 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e48512a9-5a41-49fe-8ea2-46ac5a3f5a4c + - 4f55ea98-3735-48d1-a91b-dbb2e9c2e01d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:10 GMT + - Tue, 07 Jan 2025 15:08:50 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68e1ed5a-1fdb-4358-bfa6-1cdf40361d05 + - 0bb37ec6-b911-4c97-a684-e1ff648cfb71 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:25 GMT + - Tue, 07 Jan 2025 15:09:05 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff1438a1-dca0-476f-87ba-0df4c545b035 + - 5e3c1f0d-7c42-4d41-a399-fb15a4ccc6fc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:41 GMT + - Tue, 07 Jan 2025 15:09:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da4a942-0978-4dd9-81ee-376cff6c14d4 + - a1474a42-bcc5-4008-92fe-b22f502f51f7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:43:58 GMT + - Tue, 07 Jan 2025 15:09:35 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 534cf011-41e9-416a-9f25-138939469842 + - 55c7c3a6-b97c-4908-828c-1d6e65f84757 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:13 GMT + - Tue, 07 Jan 2025 15:09:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8caa7719-5405-49c0-ab0e-8e4b87d7c114 + - 671be554-c297-4026-ac1a-4e5e66a34ff7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:29 GMT + - Tue, 07 Jan 2025 15:10:06 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d9bfea6-5d18-4ff4-af12-e78936044e0c + - eabd761c-a21c-4008-a40e-515bc1bfec85 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:44 GMT + - Tue, 07 Jan 2025 15:10:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 531943c4-8cf2-466d-b59c-d808cfd05927 + - c7e473d5-1687-41cf-818e-726caa1474b2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:44:59 GMT + - Tue, 07 Jan 2025 15:10:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76fffca3-effe-4962-8cca-68b136ac1283 + - 1994972b-7fb6-420a-b9b3-5fb7a6633a22 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:14 GMT + - Tue, 07 Jan 2025 15:10:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,53 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b8fa98d-60cd-4592-bf7d-ae5f69d63ed4 + - 2ad050eb-38cb-429c-8336-a4956148ee38 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:29 GMT + - Tue, 07 Jan 2025 15:11:06 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,59 +2633,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4da650e-a17b-4675-8708-a270eb694925 + - 06fd56ed-5f11-43c7-97c1-0f259282e0dd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:43:10.549771Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:43:10.549771Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:45:44 GMT + - Tue, 07 Jan 2025 15:11:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,63 +2687,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0141e848-cb97-4a9e-b83c-b846deb3d5c2 + - 96757140-1411-4db7-a208-c31435f6a064 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24398, "name":null, "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24398, "name":null, - "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 + method: GET + response: + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T15:08:50.205704Z", "region":"fr-par"}' + headers: + Content-Length: + - "1058" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 15:11:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5363fa2b-3e03-414e-b6d0-a9e6b4db4f6b + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.205704Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: GET response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24398, "name":null, "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24398, "name":null, - "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.205704Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:01 GMT + - Tue, 07 Jan 2025 15:11:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -717,7 +2801,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dab438cb-8774-41a9-8b8f-f2bfb6a18671 + - 79c13812-6f0e-47b3-bf3b-bfeae1d3aa48 status: 200 OK code: 200 duration: "" @@ -728,8 +2812,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233/users + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0/users method: POST response: body: '{"name":"cli-test", "is_admin":false}' @@ -741,9 +2825,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:01 GMT + - Tue, 07 Jan 2025 15:11:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -751,7 +2835,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 530cb675-72ee-4758-8e30-84d484c45247 + - a40538b7-6d24-4da8-bcc6-9aefbb162007 status: 200 OK code: 200 duration: "" @@ -762,8 +2846,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233/users/cli-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0/users/cli-test method: PATCH response: body: '{"name":"cli-test", "is_admin":true}' @@ -775,9 +2859,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:02 GMT + - Tue, 07 Jan 2025 15:11:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,63 +2869,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e415e26-4953-4f65-a642-806ce976e03c + - 5d0c97f9-0af3-4777-8b34-c5bd629b39eb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24398, "name":null, "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24398, "name":null, - "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.205704Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/06bd4f18-5aa5-45c0-a9bc-3b9146d6a233 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/795749c0-d073-4f28-8e87-32c1c133a1a0 method: DELETE response: - body: '{"id":"06bd4f18-5aa5-45c0-a9bc-3b9146d6a233", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"51.159.204.209", - "port":24398, "name":null, "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"795749c0-d073-4f28-8e87-32c1c133a1a0", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:43:10.549771Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T15:08:50.205704Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.204.209", "port":24398, "name":null, - "id":"3bd1b38f-12c5-495e-b7a5-a26186d80331", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":28401, "name":null, + "id":"96630051-7816-424a-994c-5370ba1be3c8", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:43:10.549771Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T15:08:50.205704Z", + "region":"fr-par"}' headers: Content-Length: - - "1580" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:46:02 GMT + - Tue, 07 Jan 2025 15:11:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -849,7 +2929,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af2eaf9b-6d77-4207-90ec-69b982944739 + - 73e61b76-18c2-424d-bb87-725fdb101e87 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.cassette.yaml index e44d238c3..6718ab9f5 100644 --- a/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.cassette.yaml @@ -2,50 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:38:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 74149877-69f2-4263-9e5c-c75ab2a08abd + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:21:24 GMT + - Tue, 07 Jan 2025 14:38:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -53,53 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d6d259d-dff6-4ae3-bf1d-01444f3e7acd + - 10c36c6f-3d4f-4140-9de4-df16f32a7010 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:21:24 GMT + - Tue, 07 Jan 2025 14:38:04 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -107,53 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f41071a-0b00-45ae-8c69-5596b5af68d5 + - 0a047467-1944-4242-bb78-60bf620ba90a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:21:39 GMT + - Tue, 07 Jan 2025 14:38:19 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -161,53 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f08ba43c-e7ed-4e68-87ae-54de8227f67d + - f08cdaa8-9a3e-4cae-bded-823930cc907f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:21:57 GMT + - Tue, 07 Jan 2025 14:38:34 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -215,53 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdd3cd3e-a946-4f86-9cb3-e9c46e1d842b + - 0c4f2904-536a-4ed8-89d7-c65dd592823f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:22:12 GMT + - Tue, 07 Jan 2025 14:38:49 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -269,53 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7c18f62-0c46-4526-ae5a-5831f7da0ed4 + - 8ae3c624-3a1d-48b4-a208-e4bd62da9768 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:22:28 GMT + - Tue, 07 Jan 2025 14:39:05 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -323,53 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b370b55-9c8d-48cf-af76-126f12382ad7 + - 295df524-4e84-423a-88f7-2e265d2393b2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:22:43 GMT + - Tue, 07 Jan 2025 14:39:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -377,53 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 110b5a4c-dc37-4409-b83b-ca4419732756 + - c80c4d73-1998-4316-9786-542d2e200b36 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:22:59 GMT + - Tue, 07 Jan 2025 14:39:35 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -431,53 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb75fb77-cd52-45cf-9ade-5877053579d3 + - 3c698bd8-3bcb-432e-a3d1-c23e62ac764e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:23:14 GMT + - Tue, 07 Jan 2025 14:39:50 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -485,53 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 032e3c14-478d-476d-a820-e8e00a33e3aa + - 68bd3dbe-6b8f-4807-bad5-fc99aa7df11d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, - "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1083" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:23:29 GMT + - Tue, 07 Jan 2025 14:40:05 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -539,59 +2585,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8b24482-778b-4d24-a73e-416801c203b3 + - 317cec00-d2de-4458-af13-f20fc938a373 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:21:23.958663Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":null, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2023-11-08T21:21:23.958663Z", - "region":"fr-par"}' + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:38:03.529787Z", "region":"fr-par"}' headers: Content-Length: - - "1358" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:23:44 GMT + - Tue, 07 Jan 2025 14:40:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,63 +2639,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 524d9aea-23a5-4fac-9768-b413c1e77c2b + - 89810e71-37c1-4f1b-a41a-cddc3103063e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1573" + - "1273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:23:59 GMT + - Tue, 07 Jan 2025 14:40:35 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -663,65 +2699,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09ee90ef-341c-4271-b200-ec52ab60c01e + - 1875dbb6-3b35-40dd-ba1e-f432207af843 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc/upgrade + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc/upgrade method: POST response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:24:00 GMT + - Tue, 07 Jan 2025 14:40:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -729,63 +2761,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 174275d9-1acc-48ab-b7d8-2e184c944e29 + - 21d4f48b-79ff-4982-82ba-9b47cd58f7ae status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:24:00 GMT + - Tue, 07 Jan 2025 14:40:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,63 +2821,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81f1686-6285-4b5d-b311-7f1125b990a2 + - 041f93c6-97c7-4bb2-93cf-75a71556472e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:24:16 GMT + - Tue, 07 Jan 2025 14:40:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -857,63 +2881,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 008052c5-e877-4622-b888-52cbbcc90b97 + - 35e9b5b2-9eb0-4591-a6d3-d8c08b89c22f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:24:31 GMT + - Tue, 07 Jan 2025 14:41:06 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -921,63 +2941,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 604640e1-2237-4c8a-864f-737e25a09708 + - bab66223-b330-43a6-9899-6c3fc03b7160 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:24:49 GMT + - Tue, 07 Jan 2025 14:41:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,63 +3001,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6307398-dc56-4d9c-aec2-e95569805da5 + - 8945114b-d08e-49c4-8b1d-196a758e5dc3 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:25:04 GMT + - Tue, 07 Jan 2025 14:41:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1049,63 +3061,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3e1db80-b7ff-4e76-99f9-ff2759d8ecba + - 0913aaab-ad9e-4d69-a4c7-fd3c61641766 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:25:20 GMT + - Tue, 07 Jan 2025 14:41:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1113,63 +3121,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4508afee-3f7c-47e4-8554-96ac12c27f68 + - cf07d3cd-ac0f-4826-8d4c-6ee16ce6d161 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:25:35 GMT + - Tue, 07 Jan 2025 14:42:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,63 +3181,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c25cd07-5ddb-44e5-a900-f3504cd34477 + - 0db777ef-eae5-4d22-bda5-3830b3866694 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:25:50 GMT + - Tue, 07 Jan 2025 14:42:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1241,63 +3241,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4e36e01-fdbe-493c-82ed-512bc8030697 + - e003dc64-f107-4a32-a992-1218544b1f6d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:26:05 GMT + - Tue, 07 Jan 2025 14:42:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1305,63 +3301,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae600123-a899-41b8-8a71-b29a068c0965 + - 227f4da2-015d-4ce5-8080-1fb15a1c985e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:26:20 GMT + - Tue, 07 Jan 2025 14:42:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1369,63 +3361,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c3d77fb-215a-4fed-8235-d2bf62754e68 + - a678fef3-e17e-4d7f-92af-47cb14654887 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:26:36 GMT + - Tue, 07 Jan 2025 14:43:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1433,63 +3421,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f037f33b-01b9-4605-b07d-3f5be742aa45 + - 731ef3b7-dbbc-43b7-947c-6b5b62c3408a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:26:51 GMT + - Tue, 07 Jan 2025 14:43:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,63 +3481,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9fb9cc9-78a7-4a3e-b5d8-4fe5ef4e04f2 + - 32a685d9-cb2a-49ee-b5ac-66890eedb2fd status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:27:06 GMT + - Tue, 07 Jan 2025 14:43:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,63 +3541,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28bbd6e3-89ee-4778-82fb-8e1b7684c44e + - f3fc7629-d4a2-499f-98b3-e1192a7c47e6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:27:21 GMT + - Tue, 07 Jan 2025 14:43:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1625,63 +3601,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f193783-5355-4b20-9e18-0a4f76c5bbef + - f1f177e2-15b6-4021-8f4e-722e2f190053 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:27:37 GMT + - Tue, 07 Jan 2025 14:44:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,63 +3661,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a52b5f-3caa-447d-ad37-ae4b7d69f6ce + - eb0357d5-c707-4137-a8a7-eb01920f1aba status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:27:52 GMT + - Tue, 07 Jan 2025 14:44:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1753,63 +3721,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1a91673-7ef0-4e6b-b84a-0da74f25d63f + - 51a94566-0e48-4b91-8fd4-a9bc929a9adf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:28:07 GMT + - Tue, 07 Jan 2025 14:44:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1817,63 +3781,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bfb2192-f3ea-4ebc-8b91-ea544a394383 + - ad0b4c2d-2896-4e1f-a4b6-4fe1633524db status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:28:22 GMT + - Tue, 07 Jan 2025 14:44:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1881,63 +3841,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9cea599-fe83-4de4-94dc-9cf9da992393 + - 583be651-54af-4859-8b83-7ebcb97dafd2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:28:37 GMT + - Tue, 07 Jan 2025 14:45:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1945,63 +3901,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89372cd2-b33a-4557-a597-a2d925eec3df + - 70af7686-ee45-485b-8227-c8b3f0a6fdaf status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:28:53 GMT + - Tue, 07 Jan 2025 14:45:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2009,63 +3961,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd6273dc-ca96-4d07-9877-be4151f6b4a6 + - e1411adb-f594-45de-85ce-fe99027d24f4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:29:08 GMT + - Tue, 07 Jan 2025 14:45:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2073,63 +4021,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5355f958-5430-48df-ae95-c8388e6cef13 + - 07ca1a39-d003-4244-9523-6b29c678d050 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:29:23 GMT + - Tue, 07 Jan 2025 14:45:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2137,63 +4081,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d74ccea6-f4fa-4bfd-b0f8-03c18dc818d0 + - 622beec2-ea15-471c-8940-bd01ca2b4451 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:29:38 GMT + - Tue, 07 Jan 2025 14:46:09 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2201,63 +4141,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 920500a6-064d-4cfb-aa66-0106e10751f5 + - f75f8e2c-b001-41db-b8c4-778940d6a06b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:29:53 GMT + - Tue, 07 Jan 2025 14:46:24 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,63 +4201,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2025039-a9db-4e12-a374-f0f86dfd2781 + - f95c5f67-91ba-401d-a4e6-5586da0ecfde status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: GET response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", + "port":13415, "name":null, "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1574" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:09 GMT + - Tue, 07 Jan 2025 14:46:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2329,63 +4261,119 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c270c46-c009-4706-bdb4-59bde3571829 + - f85ddce5-fe82-4e0f-9f6d-919d08777292 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc + method: GET + response: + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", + "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", + "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' + headers: + Content-Length: + - "1274" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:46:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fcc01d19-8b5e-4d67-b7c4-508ae287f13a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c84e86cd-215a-481d-aca1-3f241327f0fc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/eadfe5b9-2ae8-4196-bd12-d39fed2b13bc method: DELETE response: - body: '{"id":"c84e86cd-215a-481d-aca1-3f241327f0fc", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"2e670f5c-493b-443f-92bd-986f23da2750", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.12"}, {"id":"2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.9"}, {"id":"d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.4"}], "endpoint":{"ip":"195.154.70.34", - "port":8760, "name":null, "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2023-11-09T21:21:23.958663Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:38:03.529787Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-m", "volume":{"type":"lssd", "size":25000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"195.154.70.34", "port":8760, "name":null, - "id":"8023e158-97b0-4b50-b697-c63e8e98ae5d", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":13415, "name":null, + "id":"ab34e695-1d0b-4a66-aa9a-4744067e3bcb", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2023-11-08T21:21:23.958663Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:38:03.529787Z", + "region":"fr-par"}' headers: Content-Length: - - "1577" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Nov 2023 21:30:10 GMT + - Tue, 07 Jan 2025 14:46:55 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2393,7 +4381,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9177f48-dfa7-4627-b26e-48b28a444545 + - 47494f52-bcea-41ab-ac9b-8ec492abcb85 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.golden b/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.golden index 946aa5330..b07321954 100644 --- a/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.golden +++ b/internal/namespaces/rdb/v1/testdata/test-upgrade-instance-simple.golden @@ -1,37 +1,26 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -CreatedAt few seconds ago -Region fr-par -ID c84e86cd-215a-481d-aca1-3f241327f0fc -Name cli-test -OrganizationID fa1e3217-dc80-42ac-85c3-3f034b78b552 -ProjectID fa1e3217-dc80-42ac-85c3-3f034b78b552 -Status ready -Engine PostgreSQL-12 -UpgradableVersion.0.ID 2e670f5c-493b-443f-92bd-986f23da2750 -UpgradableVersion.0.Name PostgreSQL-13 -UpgradableVersion.0.Version 13 -UpgradableVersion.0.MinorVersion 13.12 -UpgradableVersion.1.ID 2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9 -UpgradableVersion.1.Name PostgreSQL-14 -UpgradableVersion.1.Version 14 -UpgradableVersion.1.MinorVersion 14.9 -UpgradableVersion.2.ID d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d -UpgradableVersion.2.Name PostgreSQL-15 -UpgradableVersion.2.Version 15 -UpgradableVersion.2.MinorVersion 15.4 -IsHaCluster false -NodeType db-dev-m -Endpoints.0.ID 8023e158-97b0-4b50-b697-c63e8e98ae5d -Endpoints.0.IP 195.154.70.34 -Endpoints.0.Port 8760 -LogsPolicy.MaxAgeRetention 30 -BackupSameRegion false +CreatedAt few seconds ago +Region fr-par +ID eadfe5b9-2ae8-4196-bd12-d39fed2b13bc +Name cli-test +OrganizationID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +ProjectID 5ebc0159-7cb7-406c-9521-9347d1987fb2 +Status ready +Engine PostgreSQL-15 +IsHaCluster false +NodeType db-dev-m +Endpoints.0.ID ab34e695-1d0b-4a66-aa9a-4744067e3bcb +Endpoints.0.IP 51.159.8.181 +Endpoints.0.Port 13415 +LogsPolicy.MaxAgeRetention 30 +BackupSameRegion false +Encryption.Enabled false Endpoint: -ID 8023e158-97b0-4b50-b697-c63e8e98ae5d -IP 195.154.70.34 -Port 8760 +ID ab34e695-1d0b-4a66-aa9a-4744067e3bcb +IP 51.159.8.181 +Port 13415 Volume: Type lssd @@ -61,36 +50,17 @@ work_mem 4 "class": "lssd" }, "region": "fr-par", - "id": "c84e86cd-215a-481d-aca1-3f241327f0fc", + "id": "eadfe5b9-2ae8-4196-bd12-d39fed2b13bc", "name": "cli-test", - "organization_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id": "fa1e3217-dc80-42ac-85c3-3f034b78b552", + "organization_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id": "5ebc0159-7cb7-406c-9521-9347d1987fb2", "status": "ready", - "engine": "PostgreSQL-12", - "upgradable_version": [ - { - "id": "2e670f5c-493b-443f-92bd-986f23da2750", - "name": "PostgreSQL-13", - "version": "13", - "minor_version": "13.12" - }, - { - "id": "2988cc5e-e0dd-48ba-bd8b-b394db1fc6b9", - "name": "PostgreSQL-14", - "version": "14", - "minor_version": "14.9" - }, - { - "id": "d6fa23a8-ff53-464e-b0b0-4c4a3c1eb87d", - "name": "PostgreSQL-15", - "version": "15", - "minor_version": "15.4" - } - ], + "engine": "PostgreSQL-15", + "upgradable_version": [], "endpoint": { - "id": "8023e158-97b0-4b50-b697-c63e8e98ae5d", - "ip": "195.154.70.34", - "port": 8760, + "id": "ab34e695-1d0b-4a66-aa9a-4744067e3bcb", + "ip": "51.159.8.181", + "port": 13415, "name": null, "load_balancer": {} }, @@ -133,9 +103,9 @@ work_mem 4 "init_settings": [], "endpoints": [ { - "id": "8023e158-97b0-4b50-b697-c63e8e98ae5d", - "ip": "195.154.70.34", - "port": 8760, + "id": "ab34e695-1d0b-4a66-aa9a-4744067e3bcb", + "ip": "51.159.8.181", + "port": 13415, "name": null, "load_balancer": {} } @@ -146,5 +116,7 @@ work_mem 4 }, "backup_same_region": false, "maintenances": [], - "encryption": null + "encryption": { + "enabled": false + } } diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.cassette.yaml index b81541a5b..57a37fa61 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.cassette.yaml @@ -2,516 +2,2100 @@ version: 1 interactions: - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:36:38 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dbee4da1-3053-4a71-b459-5a209ca39869 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:36:38 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec12a319-501d-49ae-9b36-810fb0dc6151 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:36:57 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e56315f-e470-4aee-98ee-dfa8ab2cf4f0 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:37:12 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9aeb3d2-6865-4868-ba04-7e493f504fe5 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:37:27 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd08ebac-e55c-4276-aaa2-4a9bb6aea01d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:37:42 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e16e24dc-907d-4e6b-b226-b5f6a5e69be2 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:37:57 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7019138-463d-4937-b884-eee0eec85a0a - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:38:12 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a27058c6-4222-4aef-a682-6d0d196be918 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:38:28 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2d70ea54-a150-4f0f-a009-160ad24edd12 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' headers: Content-Length: - - "917" + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:43 GMT + - Tue, 07 Jan 2025 14:55:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -519,103 +2103,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90b478ac-f774-4bed-a3e6-a485e84fc210 + - 712da73a-f0b0-49a0-8582-84f4725b8a25 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - headers: - Content-Length: - - "917" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Thu, 04 Jan 2024 14:38:58 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 743bda49-fa72-4c8a-b2ff-c0065a28ff7b - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:13 GMT + - Tue, 07 Jan 2025 14:55:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -623,51 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a748f519-a4c3-4085-8a8f-7896e154567f + - a1cdcb0a-7f44-46e7-b13f-f731829d2ccc status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:29 GMT + - Tue, 07 Jan 2025 14:55:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -675,51 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01088e48-1f6c-441b-adfb-5a93cbc25427 + - 02165988-48a8-4bf9-bc77-59a5dfdf70e4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:44 GMT + - Tue, 07 Jan 2025 14:55:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -727,51 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1608974-03e1-411e-abbc-53e740bb94e6 + - 6596e21b-2da5-47f8-9700-17e9f7d467fb status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:59 GMT + - Tue, 07 Jan 2025 14:55:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -779,51 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b249eaef-64b5-4b56-8099-2e845fc899e6 + - d961af83-3549-40f2-821e-ffd54e253d1e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:14 GMT + - Tue, 07 Jan 2025 14:56:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -831,51 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fe88fe1-01cc-4c0e-8161-6b83b76e1b19 + - 2f21e6b3-d606-46b1-b11f-55a0631a913d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:29 GMT + - Tue, 07 Jan 2025 14:56:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,51 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b6235ff-d13c-4b21-9def-f8ed5e1a92c3 + - 91b16e79-8a83-4011-8be9-d34cb1f0de0b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:44 GMT + - Tue, 07 Jan 2025 14:56:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -935,51 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 984383b6-0778-4146-a7e7-82fc49a7c5a7 + - b132cff8-992f-479b-831f-e7891bd0ed0e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:41:00 GMT + - Tue, 07 Jan 2025 14:56:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,51 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1ebdf7a-9be8-493a-a1cf-d9bc9d920dc4 + - b49756d2-f934-42fb-9ddb-d44727c4b49f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:41:15 GMT + - Tue, 07 Jan 2025 14:57:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1039,51 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9e40392-9aea-4457-8e6f-c7e4d1f6df64 + - dcd9d13a-05c0-4d4d-a93c-f42f2ba53031 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:41:30 GMT + - Tue, 07 Jan 2025 14:57:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1091,51 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bd00485-a291-409d-a4ee-35d9aa004065 + - ca50aee3-41f7-4a42-afa3-68157551292b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:41:46 GMT + - Tue, 07 Jan 2025 14:57:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1143,51 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2822cb7f-6d93-4817-8ffb-9713aba6856a + - 93686b7a-dc92-4fb5-94d0-7736cea411d8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], - "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[], + "backup_schedule":{"frequency":24, "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, + "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, + "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:42:01 GMT + - Tue, 07 Jan 2025 14:57:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,51 +2681,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc4d2b2d-3ddd-4212-ba3f-53abb5147019 + - 3d8632eb-ad00-43ea-940d-43eec1e43448 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:42:16 GMT + - Tue, 07 Jan 2025 14:58:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1247,51 +2729,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35c3dd2d-a6cd-42af-9f55-991f216860ef + - 08290a90-1f9a-4441-af2d-0fa07f97a6a9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.718205Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"MySQL-8", "upgradable_version":[], "endpoint":null, "tags":[], "settings":[{"name":"max_connections", + "value":"100"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.666534Z", "region":"fr-par"}' headers: Content-Length: - - "917" + - "818" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:42:31 GMT + - Tue, 07 Jan 2025 14:58:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,155 +2777,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19e73e46-9a10-4bac-a85d-9d1fee406870 + - 57a39f98-1b58-407b-9ba4-827edc65b121 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":22916, "name":null, + "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, - "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.74.117", + "port":22916, "name":null, "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, - "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' - headers: - Content-Length: - - "958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:42:47 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bce73630-0f4f-47ed-ba58-cf99248caa71 - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, - "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 - method: GET - response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"MySQL-8", "upgradable_version":[], "endpoint":{"port":0, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, - "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' - headers: - Content-Length: - - "958" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 04 Jan 2024 14:43:02 GMT - Server: - - Scaleway API-Gateway - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0639529c-1cb8-473e-a753-67572a684a3d - status: 200 OK - code: 200 - duration: "" -- request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.207.166", "port":26151, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], - "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, - "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.207.166", - "port":26151, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], - "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.207.166", "port":26151, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":22916, "name":null, + "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.207.166", - "port":26151, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.74.117", + "port":22916, "name":null, "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", + "region":"fr-par"}' headers: Content-Length: - - "1005" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:43:17 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1455,51 +2831,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d369a5cc-c58a-4bac-9f43-bf1dbc45a332 + - 2879230f-604a-4369-a3d0-cb183b534302 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.207.166", "port":26151, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":22916, "name":null, + "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.207.166", - "port":26151, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.74.117", + "port":22916, "name":null, "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: GET response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.207.166", "port":26151, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":22916, "name":null, + "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.207.166", - "port":26151, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.74.117", + "port":22916, "name":null, "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", + "region":"fr-par"}' headers: Content-Length: - - "1005" + - "1035" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:43:17 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1507,7 +2885,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb6d72d4-437e-4560-b505-bba15fa9a5d7 + - d2f673e2-c2be-41dd-a3bb-dc57ec2829f2 status: 200 OK code: 200 duration: "" @@ -1516,8 +2894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686/users?name=&order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40/users?name=&order_by=name_asc&page=1 method: GET response: body: '{"users":[{"name":"foobar", "is_admin":true}], "total_count":1}' @@ -1529,9 +2907,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:43:17 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1539,51 +2917,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2a89b3d-c08e-4a97-a13f-9967a62629e8 + - ff738ca4-b557-4c0c-9282-0afc84744981 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.207.166", "port":26151, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":22916, "name":null, + "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.207.166", - "port":26151, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.74.117", + "port":22916, "name":null, "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/785bdb35-2dc7-4c4e-86ab-45398145f686 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c0281cc6-6c15-47fe-95d1-bc581c086a40 method: DELETE response: - body: '{"id":"785bdb35-2dc7-4c4e-86ab-45398145f686", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"MySQL-8", - "upgradable_version":[], "endpoint":{"ip":"51.159.207.166", "port":26151, "name":null, - "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}, "tags":[], + body: '{"id":"c0281cc6-6c15-47fe-95d1-bc581c086a40", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"MySQL-8", + "upgradable_version":[], "endpoint":{"ip":"51.159.74.117", "port":22916, "name":null, + "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}, "tags":[], "settings":[{"name":"max_connections", "value":"100"}], "backup_schedule":{"frequency":24, - "retention":7, "disabled":false, "next_run_at":"2024-01-05T14:36:37.718205Z"}, + "retention":7, "disabled":false, "next_run_at":"2025-01-08T14:55:21.666534Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", - "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.207.166", - "port":26151, "name":null, "id":"bbad8ae3-6e7a-48eb-b60b-457107d24a07", "load_balancer":{}}], + "size":5000000000, "class":"lssd"}, "init_settings":[], "endpoints":[{"ip":"51.159.74.117", + "port":22916, "name":null, "id":"9a16d5c5-f426-4e2b-a3e1-e29548308bfd", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, - "maintenances":[], "created_at":"2024-01-04T14:36:37.718205Z", "region":"fr-par"}' + "maintenances":[], "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.666534Z", + "region":"fr-par"}' headers: Content-Length: - - "1008" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:43:18 GMT + - Tue, 07 Jan 2025 14:58:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,7 +2971,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 713113ff-6a76-4d98-942f-08b4dd66265e + - 5c48ca30-546e-4b4b-9389-b4f72c944f91 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.golden b/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.golden index afcdc1a59..b17a7c8ed 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.golden +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-my-sql.golden @@ -1,5 +1,5 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -mysql://foobar@51.159.207.166:26151 +mysql://foobar@51.159.74.117:22916 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"mysql://foobar@51.159.207.166:26151" +"mysql://foobar@51.159.74.117:22916" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.cassette.yaml index 28cfdc591..c975281e8 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.cassette.yaml @@ -2,54 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:55:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9408cca-28f4-4e1d-99a5-1fe22143cb3a + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:37 GMT + - Tue, 07 Jan 2025 14:55:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -57,57 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9df5aa7e-79a2-45c0-bb8c-23f4d13665cf + - 4390e9a5-980e-4f4b-a75d-c71b949753c6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:38 GMT + - Tue, 07 Jan 2025 14:55:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -115,57 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 730e5bef-be6e-4d5e-aca4-524b53245c7b + - 53172c81-65b9-4647-9bf3-5efbe44054a5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:53 GMT + - Tue, 07 Jan 2025 14:55:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -173,57 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f1fadc7-889c-4926-9305-bab6190e5e76 + - 6e49cbd1-043f-4be4-89d3-50c3edf58829 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:08 GMT + - Tue, 07 Jan 2025 14:55:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -231,57 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5f2d775-eb35-428d-8d15-f7a21c6dc8ba + - a1504af6-a175-4253-b14a-1e1576b866da status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:24 GMT + - Tue, 07 Jan 2025 14:56:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -289,57 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72541445-7093-4c82-ba5b-492107976710 + - 9c1fe7c0-b8d9-4b3a-8a64-bbba2449105a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:39 GMT + - Tue, 07 Jan 2025 14:56:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -347,57 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 598dd4e9-9c72-43e5-a4bd-4b18d0b78f4c + - 348337d4-250b-4c5e-9b5a-3811894caed0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:54 GMT + - Tue, 07 Jan 2025 14:56:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,57 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b78cca4-865a-4424-8d81-57a47b245715 + - a83a703d-b614-4d3b-8872-8225ab5adfb7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:10 GMT + - Tue, 07 Jan 2025 14:56:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -463,57 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7e5efcb-19ff-422c-ada9-ca03bcd2b4f5 + - f3960b43-ef4e-4769-8a25-0ba4c2835276 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:25 GMT + - Tue, 07 Jan 2025 14:57:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -521,57 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53be7395-0ec7-4c50-b91e-bc26c794c6d0 + - bef9e801-ef19-45e5-ba64-31d629fc0d83 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:41 GMT + - Tue, 07 Jan 2025 14:57:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -579,57 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e978a11-9bdc-4479-8b0c-9185265488a3 + - 6b5d8b8b-dd8c-46a2-bc9e-46e26e1a01e1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:56 GMT + - Tue, 07 Jan 2025 14:57:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -637,57 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8cddfe6-830c-4785-b216-ba1a23acacf2 + - fa9baec5-8117-4304-989e-e72f451f5680 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:11 GMT + - Tue, 07 Jan 2025 14:57:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,63 +2681,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a93e6af-4d44-4c64-ab70-f25486747a38 + - 5caa6e0a-dfac-4d82-abfc-e86c5e63d7ca status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", - "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", - "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", - "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:26 GMT + - Tue, 07 Jan 2025 14:58:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -759,63 +2729,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c874c96-44d7-47e5-a577-3dc0e61d5723 + - 1880ecb2-ea5d-44b7-a06f-28d5a5fb54e4 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.518314Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.578549Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:41 GMT + - Tue, 07 Jan 2025 14:58:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -823,63 +2783,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c473af7b-7975-43fb-8aac-8d5d03369bdd + - 101d7d94-768a-436e-b985-e8afda639fc0 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":24503, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":24503, "name":null, - "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.518314Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.578549Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":24503, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":24503, "name":null, - "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.518314Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.578549Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:57 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,63 +2843,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16d43ba0-3e58-4504-aa6a-33778b913d32 + - 17f29f55-8f04-48c3-bb5b-4f3503245ea7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":24503, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":24503, "name":null, - "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.518314Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.578549Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: GET response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":24503, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":24503, "name":null, - "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.518314Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.578549Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:57 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -951,7 +2903,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5177f5d9-21d1-4056-879f-10905f2df4e5 + - 0d3c8d15-711f-46aa-a819-fac48b44513e status: 200 OK code: 200 duration: "" @@ -960,8 +2912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3/users?name=&order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8/users?name=&order_by=name_asc&page=1 method: GET response: body: '{"users":[{"name":"foobar", "is_admin":true}], "total_count":1}' @@ -973,9 +2925,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:57 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,63 +2935,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23341796-b20f-4f38-834b-2c23a62077a6 + - 1addaf03-ee61-4827-98b8-ec29d1829c79 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":24503, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":24503, "name":null, - "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.518314Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.578549Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/db2ff388-70ee-4612-b4f3-0e764b4e86d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d11e3c1a-65c1-4d21-925d-c7516e8950b8 method: DELETE response: - body: '{"id":"db2ff388-70ee-4612-b4f3-0e764b4e86d3", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":24503, "name":null, "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"d11e3c1a-65c1-4d21-925d-c7516e8950b8", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.518314Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.578549Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":24503, "name":null, - "id":"eb967a46-66ac-43cf-abbf-79956849ccb9", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":22720, "name":null, + "id":"ac0ae8f9-9153-4de5-81b3-aaf63fdbfdec", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.518314Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.578549Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:58 GMT + - Tue, 07 Jan 2025 14:58:39 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1047,7 +2995,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e88fc6e-74e5-408d-93d5-8d5adb9b10e4 + - 4e50da81-6c6b-457a-b099-2e61b6c9edf1 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.golden b/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.golden index a72f6341c..856af7aff 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.golden +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-postgres.golden @@ -1,5 +1,5 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -postgresql://foobar@51.159.113.128:24503 +postgresql://foobar@195.154.69.220:22720 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"postgresql://foobar@51.159.113.128:24503" +"postgresql://foobar@195.154.69.220:22720" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.cassette.yaml index 2f089a203..6477ed333 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.cassette.yaml @@ -2,54 +2,2100 @@ version: 1 interactions: - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' headers: Content-Length: - - "1256" + - "124206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:38 GMT + - Tue, 07 Jan 2025 14:55:20 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -57,57 +2103,49 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e939b20-57e8-4125-b5e7-9e127891415a + - c6ceb733-09cf-40f9-8b67-2d3fc2bc2f3f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:38 GMT + - Tue, 07 Jan 2025 14:55:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -115,57 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e21d02c-49fb-4b2e-aa75-cfaeb51fe652 + - b6688f37-a009-43f6-967f-5063e1932208 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:53 GMT + - Tue, 07 Jan 2025 14:55:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -173,57 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1e62586-d9e6-4a77-9e85-0c724dde1a29 + - 8abe64ca-6e8c-4f8d-93a9-ba5270f9f708 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:10 GMT + - Tue, 07 Jan 2025 14:55:36 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -231,57 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a181622-7c52-4af8-8d4c-973ae7278d1e + - fb914a8a-dfc9-440d-916c-efc2f6a5a6af status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:25 GMT + - Tue, 07 Jan 2025 14:55:51 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -289,57 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d52ebcf-82bb-4628-9944-c23265ea12cc + - bb559d27-c5c6-4e6a-ac22-400c8d4c676d status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:40 GMT + - Tue, 07 Jan 2025 14:56:06 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -347,57 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3775b7e6-e951-4e3e-a388-8420b00793da + - 486244e3-3675-4ba2-9be8-5135cc2c71ee status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:56 GMT + - Tue, 07 Jan 2025 14:56:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,57 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf32fecf-bd1c-4545-aaef-1846b680ea1f + - 19a31e43-4993-4c38-b1ec-fd1830eb6da2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:11 GMT + - Tue, 07 Jan 2025 14:56:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -463,57 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab83952f-605b-4981-a5a1-ce517590159e + - 5f7242ef-fdfd-4a5b-a949-120d48f3833a status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:26 GMT + - Tue, 07 Jan 2025 14:56:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -521,57 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2a33ac6-d9e0-4726-9010-4e26c0924737 + - 37c8ac05-10b1-4fd5-8159-6073a3b2415c status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:42 GMT + - Tue, 07 Jan 2025 14:57:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -579,57 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 709d4f5d-bbe4-47fa-a84b-e49bb07a1eec + - e2810c22-b240-4221-bc11-54accc3310ed status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:57 GMT + - Tue, 07 Jan 2025 14:57:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -637,57 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54a732c7-6b79-4525-a683-dae66cd94cee + - 3eba168c-be1d-47f6-8fd5-ac1194e6a4ed status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:12 GMT + - Tue, 07 Jan 2025 14:57:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,57 +2633,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bec90f6-3078-409f-8f67-db931b1756f9 + - b51c0214-f108-4aad-acb5-c107ff6df846 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:27 GMT + - Tue, 07 Jan 2025 14:57:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -753,57 +2681,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a355599-1d7e-4ca9-9eb5-2051cb5a587d + - a762e109-2794-4e69-ac86-f3165e69db25 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:42 GMT + - Tue, 07 Jan 2025 14:58:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -811,63 +2729,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 614a9f93-52f7-446a-b106-07c13563c00c + - 886e0244-3274-4bab-9d3f-63360ebef12b status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:58 GMT + - Tue, 07 Jan 2025 14:58:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -875,63 +2783,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 282442e3-96f8-4b1c-a0f3-da1dcfb5b68b + - c4873364-2f73-404b-98fb-69cf5ee294ac status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.603492Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:20.997196Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:13 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -939,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1db33506-c29d-44f9-ac65-152b29ea3a70 + - 4058bd1b-0f22-45e9-a02d-6810ec4e80b7 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":27119, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":27119, "name":null, - "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.603492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:20.997196Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":27119, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":27119, "name":null, - "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.603492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:20.997196Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:28 GMT + - Tue, 07 Jan 2025 14:58:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,7 +2897,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27f961c3-9541-4576-b0c3-ea056687ad5a + - fe08ab1d-7439-4c45-b86a-53a3046ab75f status: 200 OK code: 200 duration: "" @@ -1014,8 +2908,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a/databases + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02/databases method: POST response: body: '{"name":"custom-db", "owner":"", "managed":true, "size":0}' @@ -1027,9 +2921,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:29 GMT + - Tue, 07 Jan 2025 14:58:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1037,63 +2931,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4469cfd2-c6dc-473b-8f19-0d36f2f8e4f3 + - 6db3de89-59b4-4c58-829a-26dd5131c388 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":27119, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":27119, "name":null, - "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.603492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:20.997196Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: GET response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":27119, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":27119, "name":null, - "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.603492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:20.997196Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:29 GMT + - Tue, 07 Jan 2025 14:58:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,7 +2991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a9b1257-c51e-46d6-b249-cba068ca3992 + - 4128c780-27a9-47f4-be38-db77eb56e694 status: 200 OK code: 200 duration: "" @@ -1110,8 +3000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a/users?name=&order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02/users?name=&order_by=name_asc&page=1 method: GET response: body: '{"users":[{"name":"foobar", "is_admin":true}], "total_count":1}' @@ -1123,9 +3013,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:29 GMT + - Tue, 07 Jan 2025 14:58:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1133,22 +3023,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75769f32-92d7-4f58-8274-a8c40d7df3f9 + - e73a8df7-c545-41c7-9173-e12742b33006 status: 200 OK code: 200 duration: "" - request: body: '{"databases":[{"name":"custom-db", "owner":"_rdb_superadmin", "managed":true, - "size":8160111}], "total_count":1}' + "size":7639855}], "total_count":1}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a/databases?name=custom-db&order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02/databases?name=custom-db&order_by=name_asc&page=1 method: GET response: body: '{"databases":[{"name":"custom-db", "owner":"_rdb_superadmin", "managed":true, - "size":8160111}], "total_count":1}' + "size":7639855}], "total_count":1}' headers: Content-Length: - "112" @@ -1157,9 +3047,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:29 GMT + - Tue, 07 Jan 2025 14:58:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1167,63 +3057,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9513abff-320b-430d-b4fa-8cb5d345930c + - f7de536b-13ca-4c1d-8fd7-053b5aeb66a1 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":27119, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":27119, "name":null, - "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.603492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:20.997196Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/b197be59-7cb6-406e-8652-355d14e2609a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/82435fba-f019-462e-bec4-24b97ae22b02 method: DELETE response: - body: '{"id":"b197be59-7cb6-406e-8652-355d14e2609a", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.113.128", - "port":27119, "name":null, "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"82435fba-f019-462e-bec4-24b97ae22b02", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.603492Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:20.997196Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.113.128", "port":27119, "name":null, - "id":"5ceac8d9-412b-47dd-83fb-06887ef3a426", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"195.154.69.220", "port":19261, "name":null, + "id":"a5d694a3-7169-481a-9126-a439711fdd02", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.603492Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:20.997196Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:40:30 GMT + - Tue, 07 Jan 2025 14:58:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1231,7 +3117,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dbf2a49-7423-456c-9730-221766cd8566 + - 5f795171-21d7-4005-a32e-b036e250da1d status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.golden b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.golden index 58d8ed18f..8d240eec8 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.golden +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-database.golden @@ -1,5 +1,5 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -postgresql://foobar@51.159.113.128:27119/custom-db +postgresql://foobar@195.154.69.220:19261/custom-db 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"postgresql://foobar@51.159.113.128:27119/custom-db" +"postgresql://foobar@195.154.69.220:19261/custom-db" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.cassette.yaml b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.cassette.yaml index c08c2560f..3b1fd1833 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.cassette.yaml +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.cassette.yaml @@ -2,54 +2,2150 @@ version: 1 interactions: - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines + method: GET + response: + body: '{"engines":[{"name":"MySQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg", + "versions":[{"version":"8", "name":"MySQL-8", "end_of_life":"2026-04-01T00:00:00Z", + "available_settings":[{"name":"auto_increment_increment", "default_value":"1", + "hot_configurable":true, "description":"Controls the AUTO_INCREMENT interval + between successive column values", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":65535, "float_min":null, "float_max":null}, {"name":"auto_increment_offset", + "default_value":"1", "hot_configurable":true, "description":"Determines the + starting point for the AUTO_INCREMENT column value", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1, "int_max":65535, "float_min":null, + "float_max":null}, {"name":"character_set_server", "default_value":"utf8mb4", + "hot_configurable":true, "description":"Specify a specific server side character-set + encoding", "property_type":"STRING", "unit":null, "string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"connect_timeout", + "default_value":"10", "hot_configurable":true, "description":"The number of + seconds that the mysqld server waits for a connect packet before responding + with Bad handshake", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":300, "float_min":null, "float_max":null}, {"name":"default_authentication_plugin", + "default_value":"mysql_native_password", "hot_configurable":false, "description":"The + default authentication plugin at the user creation", "property_type":"STRING", + "unit":null, "string_constraint":"^(mysql_native_password|caching_sha2_password)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"default_time_zone", + "default_value":"UTC", "hot_configurable":false, "description":"This option + sets the global time_zone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"group_concat_max_len", + "default_value":"1024", "hot_configurable":true, "description":"The maximum + permitted result length in bytes for the GROUP_CONCAT() function", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1024, "int_max":65536, "float_min":null, + "float_max":null}, {"name":"innodb_flush_method", "default_value":"fsync", "hot_configurable":false, + "description":"Defines the method used to flush data to InnoDB data files and + log files, which can affect I/O throughput", "property_type":"STRING", "unit":null, + "string_constraint":"^(fsync|O_DIRECT)$", "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"innodb_ft_max_token_size", "default_value":"84", + "hot_configurable":false, "description":"The maximum character length of words + that are stored in an InnoDB FULLTEXT index.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":10, "int_max":84, "float_min":null, "float_max":null}, + {"name":"innodb_ft_min_token_size", "default_value":"3", "hot_configurable":false, + "description":"The minimum character length of words that are stored in an InnoDB + FULLTEXT index.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":16, "float_min":null, "float_max":null}, {"name":"innodb_lock_wait_timeout", + "default_value":"50", "hot_configurable":true, "description":"The length of + time in seconds an InnoDB transaction waits for a row lock before giving up", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":600, + "float_min":null, "float_max":null}, {"name":"innodb_stats_persistent_sample_pages", + "default_value":"200", "hot_configurable":true, "description":"The number of + index pages to sample when estimating cardinality and other statistics for an + indexed column", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":20, "int_max":1000, "float_min":null, "float_max":null}, {"name":"interactive_timeout", + "default_value":"21600", "hot_configurable":true, "description":"The number + of seconds the server waits for activity on an interactive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}, {"name":"local_infile", + "default_value":"OFF", "hot_configurable":true, "description":"This variable + controls server-side LOCAL capability for LOAD DATA statements", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"lock_wait_timeout", "default_value":"31536000", + "hot_configurable":true, "description":"This variable specifies the timeout + in seconds for attempts to acquire metadata locks", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":60, "int_max":31536000, "float_min":null, + "float_max":null}, {"name":"log_bin_trust_function_creators", "default_value":"OFF", + "hot_configurable":true, "description":"This variable controls whether stored + function creators can be trusted", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"long_query_time", + "default_value":"10", "hot_configurable":true, "description":"If the slow query + log is enabled, the query is logged to the slow query log file if it takes longer + than this threshold", "property_type":"FLOAT", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":0, "float_max":3600}, {"name":"max_allowed_packet", + "default_value":"64", "hot_configurable":true, "description":"The maximum size + (MB) of one packet or any generated/intermediate string, or any parameter sent + by the mysql_stmt_send_long_data() C API function", "property_type":"INT", "unit":"M", + "string_constraint":null, "int_min":4, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"max_connections", "default_value":"100", "hot_configurable":true, "description":"The + maximum permitted number of simultaneous client connections", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":50, "int_max":5000, "float_min":null, + "float_max":null}, {"name":"max_prepared_stmt_count", "default_value":"16382", + "hot_configurable":false, "description":"Limit the total number of prepared + statements in the server", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":16382, "int_max":1048576, "float_min":null, "float_max":null}, {"name":"min_examined_row_limit", + "default_value":"0", "hot_configurable":true, "description":"Queries that examine + fewer than this number of rows are not logged to the slow query log.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"slow_query_log", "default_value":"OFF", "hot_configurable":false, + "description":"Whether the slow query log is enabled", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"sort_buffer_size", "default_value":"262144", "hot_configurable":true, + "description":"Connection sort buffer memory size. Large buffer slows down most + queries that perform sorts.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":32768, "int_max":10485760, "float_min":null, "float_max":null}, {"name":"sql_mode", + "default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION", + "hot_configurable":true, "description":"Modes affect the SQL syntax MySQL supports + and the data validation checks it performs", "property_type":"STRING", "unit":null, + "string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"table_definition_cache", + "default_value":"2000", "hot_configurable":true, "description":"The number of + table definitions that can be stored in the definition cache", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache", "default_value":"10000", "hot_configurable":true, + "description":"The number of open tables for all threads", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":1000, "int_max":20000, "float_min":null, + "float_max":null}, {"name":"table_open_cache_instances", "default_value":"16", + "hot_configurable":true, "description":"The number of open tables cache instances. + Improve scalability by reducing contention among sessions but increase memory + usage in case of many triggers or procedures", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":1, "int_max":16, "float_min":null, "float_max":null}, + {"name":"thread_stack", "default_value":"280", "hot_configurable":false, "description":"Defines + the stack size for each thread and impact the complexity of the SQL statements + that the server can handle.", "property_type":"INT", "unit":"K", "string_constraint":null, + "int_min":128, "int_max":10240, "float_min":null, "float_max":null}, {"name":"transaction_isolation", + "default_value":"REPEATABLE-READ", "hot_configurable":true, "description":"Define + the transaction isolation level which fine-tunes the balance between performance + and reliability, consistency, and reproducibility of your database", "property_type":"STRING", + "unit":null, "string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"wait_timeout", + "default_value":"21600", "hot_configurable":false, "description":"The number + of seconds the server waits for activity on a noninteractive connection before + closing it", "property_type":"INT", "unit":null, "string_constraint":null, "int_min":60, + "int_max":21600, "float_min":null, "float_max":null}], "disabled":false, "beta":false, + "available_init_settings":[{"name":"lower_case_table_names", "default_value":"0", + "hot_configurable":false, "description":"If set to 0, table names are stored + as specified and comparisons are case-sensitive. If set to 1, table names are + stored in lowercase on disk and comparisons are not case sensitive.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1, "float_min":null, + "float_max":null}]}], "region":"fr-par"}, {"name":"PostgreSQL", "logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg", + "versions":[{"version":"15", "name":"PostgreSQL-15", "end_of_life":"2027-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"14", "name":"PostgreSQL-14", "end_of_life":"2026-11-12T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"13", "name":"PostgreSQL-13", "end_of_life":"2025-11-13T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":false, "beta":false, "available_init_settings":[]}, + {"version":"12", "name":"PostgreSQL-12", "end_of_life":"2024-11-14T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"effective_io_concurrency", + "default_value":"1", "hot_configurable":true, "description":"Sets the number + of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":32, + "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", "default_value":"off", + "hot_configurable":true, "description":"Specifies whether or not a hot standby + will send feedback to the primary or upstream standby about queries currently + executing on the standby.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"pgaudit.log", + "default_value":"none", "hot_configurable":true, "description":"Specifies which + classes of statements will be logged by session audit logging", "property_type":"STRING", + "unit":null, "string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"pgaudit.role", + "default_value":"", "hot_configurable":true, "description":"Specifies the master + role to use for object audit logging.", "property_type":"STRING", "unit":null, + "string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$", "int_min":null, "int_max":null, + "float_min":null, "float_max":null}, {"name":"random_page_cost", "default_value":"4.0", + "hot_configurable":true, "description":"Sets the planner''s estimate of the + cost of a non-sequentially-fetched disk page.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"rdb.enable_pgaudit", "default_value":"off", "hot_configurable":false, + "description":"Enable pgaudit extension on the instance.", "property_type":"BOOLEAN", + "unit":null, "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"seq_page_cost", "default_value":"1.0", "hot_configurable":true, + "description":"Sets the planner''s estimate of the cost of a disk page fetch + that is part of a series of sequential fetches.", "property_type":"FLOAT", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":0.1, "float_max":10}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"11", "name":"PostgreSQL-11", "end_of_life":"2023-11-09T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"track_activity_query_size", + "default_value":"1024", "hot_configurable":false, "description":"Sets the size + reserved for pg_stat_activity.query.", "property_type":"INT", "unit":"B", "string_constraint":null, + "int_min":100, "int_max":8192, "float_min":null, "float_max":null}, {"name":"track_commit_timestamp", + "default_value":"off", "hot_configurable":false, "description":"Record commit + time of transactions.", "property_type":"BOOLEAN", "unit":null, "string_constraint":null, + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"10", "name":"PostgreSQL-10", "end_of_life":"2022-11-10T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"checkpoint_timeout", "default_value":"30", "hot_configurable":true, + "description":"Sets the maximum time between automatic WAL checkpoints", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":30, "int_max":21600, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"hot_standby_feedback", + "default_value":"off", "hot_configurable":true, "description":"Specifies whether + or not a hot standby will send feedback to the primary or upstream standby about + queries currently executing on the standby.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"idle_in_transaction_session_timeout", "default_value":"3600000", + "hot_configurable":true, "description":"Sets the maximum allowed duration of + any idling transaction. Value in ms", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"lock_timeout", + "default_value":"0", "hot_configurable":false, "description":"Sets the maximum + allowed duration of any wait for a lock.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"log_autovacuum_min_duration", "default_value":"-1", + "hot_configurable":true, "description":"Sets the minimum execution time above + which autovacuum actions will be logged", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers", + "default_value":"8", "hot_configurable":true, "description":"Sets the maximum + number of parallel workers that can be active at one time.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, + "float_max":null}, {"name":"max_parallel_workers_per_gather", "default_value":"2", + "hot_configurable":true, "description":"Sets the maximum number of parallel + processes per executor node.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, {"name":"max_standby_streaming_delay", + "default_value":"30000", "hot_configurable":true, "description":"Sets the maximum + delay before canceling queries when a hot standby server is processing streamed + WAL data.", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":0, + "int_max":180000, "float_min":null, "float_max":null}, {"name":"max_wal_size", + "default_value":"1024", "hot_configurable":true, "description":"Maximum size + to let the WAL grow during automatic checkpoints. Be careful adjusting this + setting will use disk space", "property_type":"INT", "unit":"MB", "string_constraint":null, + "int_min":256, "int_max":10240, "float_min":null, "float_max":null}, {"name":"statement_timeout", + "default_value":"86400000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any statement. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":30000, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", "default_value":"0", + "hot_configurable":true, "description":"Maximum number of TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", "default_value":"0", + "hot_configurable":true, "description":"Time between issuing TCP keepalives.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", "default_value":"0", + "hot_configurable":true, "description":"Time between TCP keepalive retransmits.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, + "float_min":null, "float_max":null}, {"name":"temp_buffers", "default_value":"8192", + "hot_configurable":true, "description":"Sets the maximum number of temporary + buffers used by each session.", "property_type":"INT", "unit":"kB", "string_constraint":null, + "int_min":800, "int_max":1073741824, "float_min":null, "float_max":null}, {"name":"temp_file_limit", + "default_value":"-1", "hot_configurable":false, "description":"Limits the total + size of all temporary files used by each session.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":-1, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"timezone", "default_value":"GMT", "hot_configurable":true, + "description":"This option sets the global timezone system variable.", "property_type":"STRING", + "unit":null, "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}, + {"version":"9.6", "name":"PostgreSQL-9.6", "end_of_life":"2021-11-11T00:00:00Z", + "available_settings":[{"name":"bgwriter_delay", "default_value":"200", "hot_configurable":true, + "description":"Background writer sleep time between rounds.", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":10, "int_max":10000, "float_min":null, + "float_max":null}, {"name":"bgwriter_flush_after", "default_value":"512", "hot_configurable":true, + "description":"Number of pages after which previously performed writes are flushed + to disk.", "property_type":"INT", "unit":"kB", "string_constraint":null, "int_min":0, + "int_max":2048, "float_min":null, "float_max":null}, {"name":"bgwriter_lru_maxpages", + "default_value":"100", "hot_configurable":true, "description":"Background writer + maximum number of LRU pages to flush per round.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1073741823, "float_min":null, + "float_max":null}, {"name":"bgwriter_lru_multiplier", "default_value":"2", "hot_configurable":true, + "description":"Multiple of the average buffer usage to free per round.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":10, "float_min":null, + "float_max":null}, {"name":"commit_delay", "default_value":"0", "hot_configurable":true, + "description":"Sets the delay in microseconds between transaction commit and + flushing WAL to disk.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":100000, "float_min":null, "float_max":null}, {"name":"deadlock_timeout", + "default_value":"1000", "hot_configurable":true, "description":"Sets the time + to wait on a lock before checking for deadlock.", "property_type":"INT", "unit":"ms", + "string_constraint":null, "int_min":100, "int_max":60000, "float_min":null, + "float_max":null}, {"name":"default_statistics_target", "default_value":"100", + "hot_configurable":true, "description":"Sets the default statistics target.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":1, "int_max":10000, + "float_min":null, "float_max":null}, {"name":"default_transaction_deferrable", + "default_value":"off", "hot_configurable":true, "description":"Sets the default + deferrable status of new transactions.", "property_type":"BOOLEAN", "unit":null, + "string_constraint":null, "int_min":null, "int_max":null, "float_min":null, + "float_max":null}, {"name":"effective_cache_size", "default_value":"4096", "hot_configurable":true, + "description":"Sets the planner s assumption about the size of the data cache.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":64, + "int_max":1048576, "float_min":null, "float_max":null}, {"name":"idle_in_transaction_session_timeout", + "default_value":"3600000", "hot_configurable":true, "description":"Sets the + maximum allowed duration of any idling transaction. Value in ms", "property_type":"INT", + "unit":"ms", "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"lock_timeout", "default_value":"0", "hot_configurable":false, + "description":"Sets the maximum allowed duration of any wait for a lock.", "property_type":"INT", + "unit":null, "string_constraint":null, "int_min":0, "int_max":2147483647, "float_min":null, + "float_max":null}, {"name":"maintenance_work_mem", "default_value":"64", "hot_configurable":true, + "description":"Sets the maximum memory to be used for maintenance operations.", + "property_type":"INT", "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, + "float_min":null, "float_max":null}, {"name":"max_connections", "default_value":"100", + "hot_configurable":false, "description":"Sets the maximum number of concurrent + connections.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":50, "int_max":10000, "float_min":null, "float_max":null}, {"name":"max_locks_per_transaction", + "default_value":"64", "hot_configurable":false, "description":"Sets the maximum + number of locks per transaction.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":10, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"max_parallel_workers_per_gather", + "default_value":"2", "hot_configurable":true, "description":"Sets the maximum + number of parallel processes per executor node.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":1024, "float_min":null, "float_max":null}, + {"name":"statement_timeout", "default_value":"86400000", "hot_configurable":true, + "description":"Sets the maximum allowed duration of any statement. Value in + ms", "property_type":"INT", "unit":"ms", "string_constraint":null, "int_min":30000, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_count", + "default_value":"0", "hot_configurable":true, "description":"Maximum number + of TCP keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_idle", + "default_value":"0", "hot_configurable":true, "description":"Time between issuing + TCP keepalives.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"tcp_keepalives_interval", + "default_value":"0", "hot_configurable":true, "description":"Time between TCP + keepalive retransmits.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"temp_buffers", + "default_value":"8192", "hot_configurable":true, "description":"Sets the maximum + number of temporary buffers used by each session.", "property_type":"INT", "unit":"kB", + "string_constraint":null, "int_min":800, "int_max":1073741824, "float_min":null, + "float_max":null}, {"name":"temp_file_limit", "default_value":"-1", "hot_configurable":false, + "description":"Limits the total size of all temporary files used by each session.", + "property_type":"INT", "unit":null, "string_constraint":null, "int_min":-1, + "int_max":2147483647, "float_min":null, "float_max":null}, {"name":"timezone", + "default_value":"GMT", "hot_configurable":true, "description":"This option sets + the global timezone system variable.", "property_type":"STRING", "unit":null, + "string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$", + "int_min":null, "int_max":null, "float_min":null, "float_max":null}, {"name":"vacuum_cost_delay", + "default_value":"0", "hot_configurable":true, "description":"Vacuum cost delay + in milliseconds.", "property_type":"INT", "unit":"ms", "string_constraint":null, + "int_min":0, "int_max":100, "float_min":null, "float_max":null}, {"name":"vacuum_cost_limit", + "default_value":"200", "hot_configurable":true, "description":"Vacuum cost amount + available before napping.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":1, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_dirty", + "default_value":"20", "hot_configurable":true, "description":"Vacuum cost for + a page dirtied by vacuum.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_hit", + "default_value":"1", "hot_configurable":true, "description":"Vacuum cost for + a page found in the buffer cache.", "property_type":"INT", "unit":null, "string_constraint":null, + "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, {"name":"vacuum_cost_page_miss", + "default_value":"10", "hot_configurable":true, "description":"Vacuum cost for + a page not found in the buffer cache.", "property_type":"INT", "unit":null, + "string_constraint":null, "int_min":0, "int_max":10000, "float_min":null, "float_max":null}, + {"name":"work_mem", "default_value":"4", "hot_configurable":true, "description":"Sets + the maximum memory to be used for query workspaces.", "property_type":"INT", + "unit":"MB", "string_constraint":null, "int_min":1, "int_max":2097151, "float_min":null, + "float_max":null}], "disabled":true, "beta":false, "available_init_settings":[]}], + "region":"fr-par"}], "total_count":2}' + headers: + Content-Length: + - "124206" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:55:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a23b7cc3-dfcb-46e4-8e43-64bd3a101f33 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:38 GMT + - Tue, 07 Jan 2025 14:55:21 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -57,57 +2153,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d4488d6-ebd3-41a9-9b1d-850fcf7d72a5 + - 46a65e8a-8ff6-42d5-9011-841f912c5991 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:38 GMT + - Tue, 07 Jan 2025 14:55:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -115,57 +2201,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c1b0052-9b4b-4c6d-830b-5994b41331c4 + - f8b498ed-7c79-4ee1-a458-da418b3fa6c5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:36:53 GMT + - Tue, 07 Jan 2025 14:55:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -173,57 +2249,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3880724f-7de1-4efc-bff1-a09eea7a97ea + - 20199888-f2dd-41f8-a15e-cdd97505b996 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"provisioning", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"provisioning", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:11 GMT + - Tue, 07 Jan 2025 14:55:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -231,57 +2297,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4be3043-5c50-484e-aaa1-062d8bc070e5 + - b34013ab-32cd-4626-b93c-6e74d5f070a9 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:26 GMT + - Tue, 07 Jan 2025 14:56:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -289,57 +2345,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17248734-4755-49db-986f-f676893f287f + - bc8cdcf2-d942-4443-a406-02624478d5d8 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:41 GMT + - Tue, 07 Jan 2025 14:56:22 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -347,57 +2393,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e8f4123-e17b-4042-ac51-5d9f51f0412c + - 7e0dd7b4-9096-4958-b1b0-9936fe85487f status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:37:57 GMT + - Tue, 07 Jan 2025 14:56:37 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,57 +2441,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76b575fb-d7a7-4b12-9172-b8630d43c001 + - 8a61e5ca-3800-46ab-91b0-2ede0a2d51f2 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:12 GMT + - Tue, 07 Jan 2025 14:56:52 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -463,57 +2489,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de69c6c5-ac94-4e0b-a06b-7b56d042344b + - 9949fed3-566d-4433-a48d-6374bf50e0c5 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:27 GMT + - Tue, 07 Jan 2025 14:57:07 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -521,57 +2537,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2be01119-f416-461b-b4ca-55ce15117995 + - 6cd3dc35-8282-43d7-ad69-f056b7a78f8e status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:42 GMT + - Tue, 07 Jan 2025 14:57:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -579,57 +2585,47 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7afa384e-3d20-4910-897b-46980a94a898 + - fc9f8c2f-ac2b-44a5-8fa3-e4bae1963c85 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:38:57 GMT + - Tue, 07 Jan 2025 14:57:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -637,57 +2633,95 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86e57bb2-d12d-4607-9864-9a5f41787adc + - d28e8ec2-433d-4663-af00-dfe6f464c2a6 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[], "backup_schedule":{"frequency":24, "retention":7, - "disabled":false, "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, - "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, - "class":"lssd"}, "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' + headers: + Content-Length: + - "783" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 07 Jan 2025 14:57:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5558c66-37dc-4454-858f-f1ddfbfda326 + status: 200 OK + code: 200 + duration: "" +- request: + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 + method: GET + response: + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], + "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1256" + - "783" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:13 GMT + - Tue, 07 Jan 2025 14:58:08 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,63 +2729,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d539331e-8e88-47ba-b23d-ab2ddf37545b + - da7dcedd-34a2-4e77-9b3e-45a4425d0a03 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:28 GMT + - Tue, 07 Jan 2025 14:58:23 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -759,63 +2783,53 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a28ca25f-e145-4c7f-b8ae-6b2e4399236d + - 8fc6a36c-39a7-4882-b2de-cc6e47af2a21 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"initializing", - "engine":"PostgreSQL-12", "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", - "name":"PostgreSQL-13", "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"port":0, - "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"initializing", + "engine":"PostgreSQL-15", "upgradable_version":[], "endpoint":null, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"port":0, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", - "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, - "backup_same_region":false, "maintenances":[], "created_at":"2024-01-04T14:36:37.540101Z", - "region":"fr-par"}' + "init_settings":[], "endpoints":[], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, + "backup_same_region":false, "maintenances":[], "encryption":{"enabled":false}, + "created_at":"2025-01-07T14:55:21.601862Z", "region":"fr-par"}' headers: Content-Length: - - "1531" + - "1058" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:43 GMT + - Tue, 07 Jan 2025 14:58:38 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -823,63 +2837,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 403649c2-06c8-4136-b0e9-70d830a878c5 + - 3cd065bc-3b32-4e33-81f7-d1b9998e8550 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":14986, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":14986, "name":null, - "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.540101Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.601862Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":14986, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":14986, "name":null, - "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.540101Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.601862Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:58 GMT + - Tue, 07 Jan 2025 14:58:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,7 +2897,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7d80241-d487-443e-a945-f3ba0aea87a6 + - 373a60bc-912d-41c4-851c-eeca6e1c5de6 status: 200 OK code: 200 duration: "" @@ -898,8 +2908,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2/users + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14/users method: POST response: body: '{"name":"custom-user", "is_admin":false}' @@ -911,9 +2921,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:59 GMT + - Tue, 07 Jan 2025 14:58:53 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -921,63 +2931,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8101abae-5fae-4eb5-9e5a-f351e8a739f6 + - f53319e0-4c1d-40f6-b494-84b819f10f42 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":14986, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":14986, "name":null, - "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.540101Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.601862Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: GET response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"ready", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":14986, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"ready", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":14986, "name":null, - "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.540101Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.601862Z", + "region":"fr-par"}' headers: Content-Length: - - "1578" + - "1271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:59 GMT + - Tue, 07 Jan 2025 14:58:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,7 +2991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee8f3656-3330-4266-a8c9-cb56f3dffe6e + - 0461d1ba-ab75-4cf6-9c31-beb0b31a5ac6 status: 200 OK code: 200 duration: "" @@ -994,8 +3000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2/users?name=custom-user&order_by=name_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14/users?name=custom-user&order_by=name_asc&page=1 method: GET response: body: '{"users":[{"name":"custom-user", "is_admin":false}], "total_count":1}' @@ -1007,9 +3013,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:59 GMT + - Tue, 07 Jan 2025 14:58:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1017,63 +3023,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd0c1c56-498a-4260-868f-e350fa273d55 + - 7ac30222-e660-4206-bba0-f6fcebe3b468 status: 200 OK code: 200 duration: "" - request: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":14986, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":14986, "name":null, - "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.540101Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.601862Z", + "region":"fr-par"}' form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.20.4; linux; amd64) cli-e2e-test - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/a73958b4-89e1-4287-b839-2ab15b2c00e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) cli-e2e-test + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/c23cbc44-0553-4569-93b7-bc419cd52d14 method: DELETE response: - body: '{"id":"a73958b4-89e1-4287-b839-2ab15b2c00e2", "name":"cli-test", "organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", - "project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552", "status":"deleting", "engine":"PostgreSQL-12", - "upgradable_version":[{"id":"f4c1ec41-89e1-48de-b872-b63b779b0dba", "name":"PostgreSQL-13", - "version":"13", "minor_version":"13.13"}, {"id":"8af4ebbb-fd08-4038-89f6-9d8c8f1232ca", - "name":"PostgreSQL-14", "version":"14", "minor_version":"14.10"}, {"id":"764c6bb3-2f1c-4f1a-bfd5-82c540ac435c", - "name":"PostgreSQL-15", "version":"15", "minor_version":"15.5"}], "endpoint":{"ip":"51.159.207.166", - "port":14986, "name":null, "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}, - "tags":[], "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", + body: '{"id":"c23cbc44-0553-4569-93b7-bc419cd52d14", "name":"cli-test", "organization_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", + "project_id":"5ebc0159-7cb7-406c-9521-9347d1987fb2", "status":"deleting", "engine":"PostgreSQL-15", + "upgradable_version":[], "endpoint":{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}, "tags":[], + "settings":[{"name":"effective_cache_size", "value":"1300"}, {"name":"maintenance_work_mem", "value":"150"}, {"name":"max_connections", "value":"100"}, {"name":"max_parallel_workers", "value":"0"}, {"name":"max_parallel_workers_per_gather", "value":"0"}, {"name":"work_mem", "value":"4"}], "backup_schedule":{"frequency":24, "retention":7, "disabled":false, - "next_run_at":"2024-01-05T14:36:37.540101Z"}, "is_ha_cluster":false, "read_replicas":[], + "next_run_at":"2025-01-08T14:55:21.601862Z"}, "is_ha_cluster":false, "read_replicas":[], "node_type":"db-dev-s", "volume":{"type":"lssd", "size":5000000000, "class":"lssd"}, - "init_settings":[], "endpoints":[{"ip":"51.159.207.166", "port":14986, "name":null, - "id":"38f1a28f-54fb-4870-a5da-c5cac799bd7a", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, + "init_settings":[], "endpoints":[{"ip":"51.159.8.181", "port":5431, "name":null, + "id":"2fcaa9b8-9bb4-4cfd-8623-8a7f931203b6", "load_balancer":{}}], "logs_policy":{"max_age_retention":30, "total_disk_retention":null}, "backup_same_region":false, "maintenances":[], - "created_at":"2024-01-04T14:36:37.540101Z", "region":"fr-par"}' + "encryption":{"enabled":false}, "created_at":"2025-01-07T14:55:21.601862Z", + "region":"fr-par"}' headers: Content-Length: - - "1581" + - "1274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 04 Jan 2024 14:39:59 GMT + - Tue, 07 Jan 2025 14:58:54 GMT Server: - - Scaleway API-Gateway + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,7 +3083,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a503bb7-0014-4513-936c-7cb8f4fff21d + - b6825b90-e94a-4e4b-b9ec-13469aa7b028 status: 200 OK code: 200 duration: "" diff --git a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.golden b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.golden index 045bc5103..ae1943255 100644 --- a/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.golden +++ b/internal/namespaces/rdb/v1/testdata/test-user-get-url-with-custom-user.golden @@ -1,5 +1,5 @@ 🎲🎲🎲 EXIT CODE: 0 🎲🎲🎲 🟩🟩🟩 STDOUT️ 🟩🟩🟩️ -postgresql://custom-user@51.159.207.166:14986 +postgresql://custom-user@51.159.8.181:5431 🟩🟩🟩 JSON STDOUT 🟩🟩🟩 -"postgresql://custom-user@51.159.207.166:14986" +"postgresql://custom-user@51.159.8.181:5431"